From 43e3e4b3a9d841e4363a8226c15abf5d8627c9cf Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Mon, 20 Dec 2021 16:31:33 -0600 Subject: [PATCH] extra: fix using --- extra/rosetta-code/amb/amb.factor | 3 ++- extra/smalltalk/listener/listener.factor | 2 +- extra/smalltalk/printer/printer.factor | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) 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 ) -- 2.34.1