]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/sandbox/syntax/syntax.factor
Rename use+ to add-use, move search to vocabs.parser, EXCLUDE: bombs out if word...
[factor.git] / extra / sandbox / syntax / syntax.factor
index 2ff5f070c7b9b0889f3292207bd48c2b735adb21..f04b05acd8347c6715af8bfc07e06b1b237bb665 100644 (file)
@@ -9,7 +9,7 @@ IN: sandbox.syntax
 ERROR: sandbox-error vocab ;
 
 : sandbox-use+ ( alias -- )
-    dup whitelist get at [ use+ ] [ sandbox-error ] ?if ;
+    dup whitelist get at [ add-use ] [ sandbox-error ] ?if ;
 
 PRIVATE>