]> gitweb.factorcode.org Git - factor.git/blobdiff - core/namespaces/namespaces.factor
core: callstack is a builtin type and a class name. rename the *stack words that...
[factor.git] / core / namespaces / namespaces.factor
index 6d20f1010f583b2d8d50eb37175ac0bf0be0d789..5b54de0e6f0fa6b16f70b0155aa2aa21247539ec 100644 (file)
@@ -41,7 +41,7 @@ PRIVATE>
 : global ( -- g ) OBJ-GLOBAL special-object { global-hashtable } declare ; foldable
 
 : namespace ( -- namespace ) namestack* last ; inline
-: namestack ( -- namestack ) namestack* clone ;
+: get-namestack ( -- namestack ) namestack* clone ;
 : set-namestack ( namestack -- )
     >vector CONTEXT-OBJ-NAMESTACK set-context-object ;
 : init-namespaces ( -- ) global 1array set-namestack ;