diff --git a/basis/unicode/script/script.factor b/basis/unicode/script/script.factor index d17f3b0a03..d973f8f712 100644 --- a/basis/unicode/script/script.factor +++ b/basis/unicode/script/script.factor @@ -1,16 +1,18 @@ ! Copyright (C) 2008 Daniel Ehrenberg. ! See http://factorcode.org/license.txt for BSD license. -USING: interval-maps namespaces simple-flat-file ; +USING: interval-maps namespaces parser simple-flat-file +words.constant ; IN: unicode.script > PRIVATE> : script-of ( char -- script ) - script-table get-global interval-at ; + script-table interval-at ;