]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/listener/listener.factor
vocabs.parser: The manifest is now a definition observer, and updates itself when...
[factor.git] / basis / listener / listener.factor
index a42eada5634f81e16d79395dcb2d05cae653b414..d4da837fe1ad1021b4aa7721d9fb194d78b1198c 100644 (file)
@@ -193,13 +193,12 @@ SYMBOL: interactive-vocabs
 
 : with-interactive-vocabs ( quot -- )
     [
-        <manifest> manifest set
         "scratchpad" set-current-vocab
         interactive-vocabs get only-use-vocabs
         call
-    ] with-scope ; inline
+    ] with-manifest ; inline
 
 : listener ( -- )
-    [ [ { } (listener) ] with-interactive-vocabs ] with-return ;
+    [ [ { } (listener) ] with-return ] with-interactive-vocabs ;
 
 MAIN: listener