]> gitweb.factorcode.org Git - factor.git/commitdiff
extra: fix using
authorDoug Coleman <doug.coleman@gmail.com>
Mon, 20 Dec 2021 22:31:33 +0000 (16:31 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Mon, 20 Dec 2021 22:32:35 +0000 (16:32 -0600)
extra/rosetta-code/amb/amb.factor
extra/smalltalk/listener/listener.factor
extra/smalltalk/printer/printer.factor

index 89931cd18b0a98575603939107e8d6f747f20480..6685b5a1503b91eddfbad6db54965e44d00cba51 100644 (file)
@@ -1,6 +1,7 @@
 ! Copyright (c) 2012 Anonymous
 ! See http://factorcode.org/license.txt for BSD license.
-USING: backtrack continuations kernel prettyprint sequences ;
+USING: backtrack continuations kernel prettyprint sequences
+splitting ;
 IN: rosetta-code.amb
 
 ! http://rosettacode.org/wiki/Amb
index 37418f9ef79e83983e1013e576c8d411664442b1..805d51687b154b20c5412d0244406056a2db58ae 100644 (file)
@@ -2,7 +2,7 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: kernel prettyprint io io.styles colors.constants compiler.units
 fry debugger sequences locals.rewrite smalltalk.ast
-smalltalk.eval smalltalk.printer smalltalk.listener ;
+smalltalk.eval smalltalk.printer smalltalk.listener splitting ;
 IN: smalltalk.listener
 
 : eval-interactively ( string -- )
index ce153d840b4ab699125b4379eb59146cd4500dfd..3ff4ea0c32f101670b802cd1aeede4daa2591763 100644 (file)
@@ -1,7 +1,8 @@
 ! Copyright (C) 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors arrays byte-arrays kernel make math
-math.parser prettyprint sequences smalltalk.ast strings ;
+math.parser prettyprint sequences smalltalk.ast strings
+splitting ;
 IN: smalltalk.printer
 
 GENERIC: smalltalk>string ( object -- string )