]> gitweb.factorcode.org Git - factor.git/commitdiff
issue #358: rename no-current-vocab
authorDoug Coleman <doug.coleman@gmail.com>
Thu, 21 Jun 2012 07:37:55 +0000 (00:37 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Thu, 21 Jun 2012 15:38:05 +0000 (08:38 -0700)
core/vocabs/parser/parser.factor

index d0a625b5ae651fa452bd5bbb1e30d0395a8fccd6..8f03af23f38585f5c884fa3523e4a62bb8ba6183 100644 (file)
@@ -86,10 +86,10 @@ PRIVATE>
         [ set-current-vocab ] dip call
     ] with-variable ; inline
 
-TUPLE: no-current-vocab ;
+TUPLE: no-current-vocab-error ;
 
 : no-current-vocab ( -- vocab )
-    \ no-current-vocab boa
+    \ no-current-vocab-error boa
     { { "Define words in scratchpad vocabulary" "scratchpad" } }
     throw-restarts dup set-current-vocab ;