From: Doug Coleman Date: Mon, 20 Dec 2021 22:31:33 +0000 (-0600) Subject: extra: fix using X-Git-Tag: 0.99~2172 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=43e3e4b3a9d841e4363a8226c15abf5d8627c9cf extra: fix using --- diff --git a/extra/rosetta-code/amb/amb.factor b/extra/rosetta-code/amb/amb.factor index 89931cd18b..6685b5a150 100644 --- a/extra/rosetta-code/amb/amb.factor +++ b/extra/rosetta-code/amb/amb.factor @@ -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 diff --git a/extra/smalltalk/listener/listener.factor b/extra/smalltalk/listener/listener.factor index 37418f9ef7..805d51687b 100644 --- a/extra/smalltalk/listener/listener.factor +++ b/extra/smalltalk/listener/listener.factor @@ -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 -- ) diff --git a/extra/smalltalk/printer/printer.factor b/extra/smalltalk/printer/printer.factor index ce153d840b..3ff4ea0c32 100644 --- a/extra/smalltalk/printer/printer.factor +++ b/extra/smalltalk/printer/printer.factor @@ -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 )