]> gitweb.factorcode.org Git - factor.git/commitdiff
namespaces: Oops, one escaped the lab
authorDoug Coleman <doug.coleman@gmail.com>
Fri, 20 Jul 2012 15:38:30 +0000 (08:38 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Fri, 20 Jul 2012 15:38:53 +0000 (08:38 -0700)
core/namespaces/namespaces.factor

index 60ccbc08d9d0ce4dabdb0a2fd574ae22cc5b332f..55d2f6cca09f3c640615d9e8448a720e40f7febf 100644 (file)
@@ -60,6 +60,5 @@ PRIVATE>
 : make-assoc ( quot exemplar -- hash ) 20 swap new-assoc [ swap with-variables ] keep ; inline
 : with-scope ( quot -- ) 5 <hashtable> swap with-variables ; inline
 : with-variable ( value key quot -- ) [ associate ] dip with-variables ; inline
-: with-new-scope ( quot -- ) 5 <hashtable> swap with-variables ; inline
 : with-global ( quot -- ) [ global ] dip with-variables ; inline
 : initialize ( variable quot -- ) [ unless* ] curry change-global ; inline