]> gitweb.factorcode.org Git - factor.git/commitdiff
core: fix using lists
authorDoug Coleman <doug.coleman@gmail.com>
Sun, 5 Feb 2023 18:40:42 +0000 (12:40 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Sun, 26 Feb 2023 23:11:03 +0000 (17:11 -0600)
core/combinators/combinators.factor
core/sorting/sorting.factor

index 0f8699fd431e47b540ce0dc9f9e825cdb47293ae..ecad0eb4df71607b575a52fe8a71a6d719b4c624 100644 (file)
@@ -2,7 +2,7 @@
 ! See https://factorcode.org/license.txt for BSD license.
 USING: accessors arrays assocs kernel kernel.private math
 math.order math.private quotations sequences sequences.private
-sets words ;
+sets sorting words ;
 IN: combinators
 
 ! Most of these combinators have compile-time expansions in
index 969a80bc798dcdf0389015f656673ac4f8b6b99d..01b2d0e0f327fb628d28a5e3ca1fef68163c48b7 100644 (file)
@@ -1,8 +1,8 @@
 ! Copyright (C) 2005, 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors arrays assocs growable.private
-hashtables kernel kernel.private math math.order math.private
-sequences sequences.private vectors ;
+USING: accessors arrays assocs growable.private hashtables
+kernel kernel.private math math.order math.private sequences
+sequences.private vectors ;
 IN: sorting
 
 ! Optimized merge-sort: