]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/nmake/nmake.factor
use with-variable in some places with-scope was used.
[factor.git] / basis / nmake / nmake.factor
index 8050d2d3fe773e5121722024f56413496f64a683..e9090f9101aac3b954334ea385afd7813719fa57 100644 (file)
@@ -32,13 +32,9 @@ MACRO: finish-nmake ( exemplars -- quot )
     length [ firstn ] curry ;
 
 :: nmake ( quot exemplars -- )
-    [
-        exemplars
-        [ 0 swap new-resizable ] map
-        building-seq set
-
+    exemplars [ 0 swap new-resizable ] map
+    building-seq [
         quot call
-
         building-seq get
         exemplars [ [ like ] 2map ] [ finish-nmake ] bi
-    ] with-scope ; inline
+    ] with-variable ; inline