add missing USING: effects.parser to descriptive, set-n

Joe Groff 2010-02-23 13:27:18 -08:00
parent 886b9c9dd2
commit 0ed3f224f9
2 changed files with 2 additions and 2 deletions

View 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 ;

View 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 ;