From 0ed3f224f95aad1a54d124a6587b3bd3d612d42d Mon Sep 17 00:00:00 2001 From: Joe Groff Date: Tue, 23 Feb 2010 13:27:18 -0800 Subject: [PATCH] add missing USING: effects.parser to descriptive, set-n --- extra/descriptive/descriptive.factor | 2 +- extra/set-n/set-n.factor | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/descriptive/descriptive.factor b/extra/descriptive/descriptive.factor index 0756c5c975..5c6b5028f8 100644 --- a/extra/descriptive/descriptive.factor +++ b/extra/descriptive/descriptive.factor @@ -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 ; diff --git a/extra/set-n/set-n.factor b/extra/set-n/set-n.factor index 80d8bf2246..0807b76b5c 100644 --- a/extra/set-n/set-n.factor +++ b/extra/set-n/set-n.factor @@ -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 ;