]> gitweb.factorcode.org Git - factor.git/blobdiff - core/namespaces/namespaces.factor
namespaces: remove unused with-variable-{on/off}
[factor.git] / core / namespaces / namespaces.factor
index b8486750b5766fe9aaf8032d24ff6aa74fe92b22..76dd62430714b2ede36ea9d0564f78d765383e42 100644 (file)
@@ -67,6 +67,4 @@ PRIVATE>
 : with-variables ( ns quot -- ) swap >n call ndrop ; inline
 : with-scope ( quot -- ) 5 <hashtable> swap with-variables ; inline
 : with-variable ( value key quot -- ) [ associate ] dip with-variables ; inline
-: with-variable-on ( key quot -- ) [ t ] 2dip with-variable ; inline
-: with-variable-off ( key quot -- ) [ f ] 2dip with-variable ; inline
 : with-global ( quot -- ) [ global ] dip with-variables ; inline