]> gitweb.factorcode.org Git - factor.git/commitdiff
add missing USING: effects.parser to descriptive, set-n
authorJoe Groff <arcata@gmail.com>
Tue, 23 Feb 2010 21:27:18 +0000 (13:27 -0800)
committerJoe Groff <arcata@gmail.com>
Tue, 23 Feb 2010 21:27:18 +0000 (13:27 -0800)
extra/descriptive/descriptive.factor
extra/set-n/set-n.factor

index 0756c5c97528994fc3040d5876c761ed3c1def2b..5c6b5028f8b51ad56546ccd8984f864e42dc9866 100644 (file)
@@ -3,7 +3,7 @@
 USING: words kernel sequences locals locals.parser fry
 locals.definitions accessors parser namespaces continuations
 summary definitions generalizations arrays prettyprint debugger io
-effects tools.annotations ;
+effects tools.annotations effects.parser ;
 IN: descriptive
 
 ERROR: descriptive-error args underlying word ;
index 80d8bf224695914714862a7264ed4d225ff0cef7..0807b76b5c8ffda1fa996a683e0416ed81d32bdc 100644 (file)
@@ -1,5 +1,5 @@
 USING: accessors assocs fry generalizations kernel locals math
-namespaces parser sequences shuffle words ;
+namespaces parser sequences shuffle words effects.parser ;
 IN: set-n
 : get* ( var n -- val ) namestack dup length rot - head assoc-stack ;