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

db4
Joe Groff 2010-02-23 13:27:18 -08:00
parent db6c083162
commit 211004f7e0
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 ;