]> gitweb.factorcode.org Git - factor.git/commitdiff
basis: cleanup more usings.
authorJohn Benediktsson <mrjbq7@gmail.com>
Sun, 30 Nov 2014 04:10:37 +0000 (20:10 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sun, 30 Nov 2014 04:10:37 +0000 (20:10 -0800)
basis/alien/complex/functor/functor.factor
basis/vectors/functor/functor.factor

index 1a4b32daa157db0649726aa857f0190f690014c9..e8ed72564c01825d5e30a8e5c4ec9a211a10c4bb 100644 (file)
@@ -1,8 +1,7 @@
 ! Copyright (C) 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors alien alien.c-types classes.struct math
-math.functions sequences arrays kernel functors vocabs.parser
-namespaces quotations ;
+USING: accessors alien alien.c-types classes.struct functors
+kernel math math.functions quotations ;
 IN: alien.complex.functor
 
 FUNCTOR: define-complex-type ( N T -- )
index a2a67d58bc6e09efeb17a64042cd8390a0af96e8..32c551b38503d4d50e35066bdb089dc595f73180 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: functors sequences sequences.private growable
-kernel words classes math parser ;
+USING: classes functors growable kernel math sequences
+sequences.private ;
 IN: vectors.functor
 
 FUNCTOR: define-vector ( V A <A> -- )