]> gitweb.factorcode.org Git - factor.git/commitdiff
listener: rename (listener) to listener-loop
authorJohn Benediktsson <mrjbq7@gmail.com>
Sat, 5 Feb 2022 05:31:07 +0000 (21:31 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sat, 5 Feb 2022 05:31:07 +0000 (21:31 -0800)
basis/listener/listener.factor

index ed0f8db09be9a1b7aabe9c604c21b0ecfb738cd9..8d89e3ddd4c0a8ad2289a59d54a8993de949492a 100644 (file)
@@ -138,8 +138,8 @@ t error-summary? set-global
         if
     ] recover ;
 
-: (listener) ( datastack -- )
-    listener-step (listener) ;
+: listener-loop ( datastack -- )
+    listener-step listener-loop ;
 
 PRIVATE>
 
@@ -222,7 +222,7 @@ SYMBOL: interactive-vocabs
 : listener ( -- )
     [
         parser-quiet? off
-        [ { } (listener) ] with-return
+        [ { } listener-loop ] with-return
     ] with-interactive-vocabs ;
 
 : listener-main ( -- )