]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/unicode/data/data.factor
Merge branch 'master' of git://factorcode.org/git/factor
[factor.git] / extra / unicode / data / data.factor
index 5e1d30d529921939bb5368db30a09859f490af6f..85ce50acb9585c7c82d950d8d58a911f1e296027 100755 (executable)
@@ -1,17 +1,9 @@
 USING: assocs math kernel sequences io.files hashtables
 quotations splitting arrays math.parser hash2 math.order
 byte-arrays words namespaces words compiler.units parser
-io.encodings.ascii ;
+io.encodings.ascii unicode.syntax.backend ;
 IN: unicode.data
 
-<<
-: VALUE:
-    CREATE-WORD { f } clone [ first ] curry define ; parsing
-
-: set-value ( value word -- )
-    word-def first set-first ;
->>
-
 ! Convenience functions
 : ?between? ( n/f from to -- ? )
     pick [ between? ] [ 3drop f ] if ;