]> gitweb.factorcode.org Git - factor.git/commitdiff
factor: trim using lists
authorDoug Coleman <doug.coleman@gmail.com>
Thu, 28 Jan 2021 14:59:37 +0000 (08:59 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Thu, 28 Jan 2021 14:59:37 +0000 (08:59 -0600)
Searched for ``fry``, delete the imports, reload with auto-use, replace the imports

42 files changed:
basis/alien/arrays/arrays.factor
basis/alien/data/data.factor
basis/alien/enums/enums.factor
basis/alien/libraries/libraries.factor
basis/alien/parser/parser.factor
basis/base64/base64.factor
basis/bit-arrays/bit-arrays.factor
basis/bit-sets/bit-sets.factor
basis/bitstreams/bitstreams.factor
basis/bootstrap/image/upload/upload.factor
basis/cache/cache.factor
basis/logging/logging.factor
basis/math/bitwise/bitwise.factor
basis/math/combinatorics/combinatorics.factor
basis/math/functions/functions.factor
basis/math/vectors/vectors.factor
basis/mirrors/mirrors.factor
basis/models/models.factor
basis/models/search/search.factor
basis/opengl/opengl.factor
basis/opengl/textures/textures.factor
basis/pack/pack.factor
basis/peg/ebnf/ebnf.factor
basis/prettyprint/backend/backend.factor
basis/stack-checker/transforms/transforms.factor
basis/strings/tables/tables.factor
core/alien/alien-tests.factor
core/combinators/short-circuit/short-circuit.factor
core/generalizations/generalizations-tests.factor
core/generalizations/generalizations.factor
core/hash-sets/hash-sets-tests.factor
core/hashtables/hashtables-tests.factor
core/io/files/files-tests.factor
core/locals/macros/macros.factor
core/locals/parser/parser.factor
core/locals/rewrite/point-free/point-free.factor
core/macros/expander/expander.factor
core/macros/macros.factor
core/memoize/memoize.factor
core/sequences/generalizations/generalizations-tests.factor
core/sequences/generalizations/generalizations.factor
core/sets/sets.factor

index a4a283804304758b127f0a3b35d29b1eed04a827..ec35625109fa3e8f9d64db518a98d4d5d3bb572c 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2008, 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors alien.accessors alien.c-types alien.strings
-arrays compiler.units cpu.architecture fry io.encodings.binary
+arrays compiler.units cpu.architecture io.encodings.binary
 io.encodings.utf8 kernel math sequences words ;
 IN: alien.arrays
 
index 6e18c3d531ac52daa7e71c4e6668ef284b3845e3..37c86bc2485a630f1bfacf89fee79584a654c8ce 100644 (file)
@@ -2,9 +2,9 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors alien alien.arrays alien.c-types alien.strings
 arrays byte-arrays combinators combinators.short-circuit
-cpu.architecture fry generalizations io io.streams.memory kernel
-libc locals macros math math.functions parser sequences
-stack-checker.dependencies summary words ;
+cpu.architecture generalizations io io.streams.memory kernel
+libc math parser sequences stack-checker.dependencies summary
+words ;
 IN: alien.data
 
 : <ref> ( value c-type -- c-ptr )
index 65ae9976551bad0a1131639d46c78cff4a48311a..109bcae1e895d0780d83be6c4f7a2584cd585a98 100644 (file)
@@ -1,8 +1,7 @@
 ! Copyright (C) 2010 Joe Groff, Erik Charlebois.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors alien.c-types arrays assocs classes.singleton
-combinators delegate fry kernel macros math parser sequences
-words ;
+combinators delegate kernel math parser sequences words ;
 IN: alien.enums
 
 <PRIVATE
index a176e106e4107e80ef2539b930b6088371df6aac..cb67a66f039f1f8d2b15be5f662b218ae22b79f2 100644 (file)
@@ -1,8 +1,8 @@
 ! Copyright (C) 2009, 2010 Slava Pestov, Joe Groff.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors alien alien.strings assocs compiler.errors
-io.backend kernel namespaces destructors sequences strings
-system io.pathnames fry combinators vocabs ;
+USING: accessors alien alien.strings assocs combinators
+compiler.errors destructors kernel namespaces sequences strings
+system vocabs ;
 IN: alien.libraries
 
 PRIMITIVE: dll-valid? ( dll -- ? )
index b15c6e5a1fa2b7ffd19c7c99cef4f60fd76655af..f630970296c809ea9ef30ac9f19bdacebf884bca 100644 (file)
@@ -1,9 +1,10 @@
 ! Copyright (C) 2008, 2010 Slava Pestov, Doug Coleman, Joe Groff.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors alien alien.c-types alien.enums alien.libraries
-arrays classes classes.parser combinators combinators.short-circuit
-compiler.units effects fry kernel lexer locals math namespaces parser
-sequences splitting summary vocabs.parser words ;
+arrays classes classes.parser combinators
+combinators.short-circuit compiler.units effects kernel lexer
+math namespaces parser sequences splitting summary vocabs.parser
+words ;
 IN: alien.parser
 
 SYMBOL: current-library
index 6c5573607c74e3dbc4a2abcb9f0ac1c220e3a81c..e9b9b62d13c7f6e5002695276ff964a902860db2 100644 (file)
@@ -1,8 +1,8 @@
 ! Copyright (C) 2008 Doug Coleman, Daniel Ehrenberg.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays assocs byte-arrays combinators fry growable io
+USING: arrays assocs byte-arrays combinators growable io
 io.encodings.binary io.streams.byte-array kernel kernel.private
-literals locals math math.bitwise namespaces sbufs sequences
+literals math math.bitwise namespaces sbufs sequences
 sequences.private ;
 IN: base64
 
index bf1d2c506131ae93b2db9d51f477b300e6623995..2bb4727d134f7f579b9cf06bc3f92226656918b4 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2007, 2011 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors alien alien.accessors byte-arrays fry io.binary
-kernel kernel.private locals math math.bitwise parser sequences
+USING: accessors alien alien.accessors byte-arrays io.binary
+kernel kernel.private math math.bitwise parser sequences
 sequences.private vocabs.loader ;
 IN: bit-arrays
 
index 5b31296d92db166cde95300d0bdfbfe41dfa5090..35783eed6105a0634a68d9f2821f1996fb57a2d3 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors bit-arrays fry kernel math math.bitwise
-sequences sequences.private sets ;
+USING: accessors bit-arrays kernel math math.bitwise sequences
+sequences.private sets ;
 IN: bit-sets
 
 TUPLE: bit-set { table bit-array read-only } ;
index d9656b407748bb2a6fde61f076cb68b3c6434c73..6b699cea0d1f256eb7e14f1028cf56da4c1c2b4b 100644 (file)
@@ -1,8 +1,8 @@
 ! Copyright (C) 2009 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors byte-arrays byte-vectors
-combinators.short-circuit fry io.binary kernel locals math
-math.bitwise sequences sequences.private ;
+combinators.short-circuit io.binary kernel math math.bitwise
+sequences sequences.private ;
 IN: bitstreams
 
 TUPLE: widthed
index 75d3bd04a1778957f490c6f51f38a1ff0a932b44..63fb72e75c8925091c7d2444b607d1366918746a 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2008 Slava Pestov.
 ! Copyright (C) 2015 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: bootstrap.image checksums checksums.openssl fry io
+USING: bootstrap.image checksums checksums.openssl io
 io.directories io.encodings.ascii io.encodings.utf8 io.files
 io.files.temp io.files.unique io.launcher io.pathnames kernel
 make math.parser namespaces sequences splitting system unicode ;
index f2e31d93698db8b359a8d2c342e334106fc0eb24..9472f7b592edc25c83ca3183fbb22be0304c4157 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors assocs continuations destructors fry kernel
-make math sequences ;
+USING: accessors assocs continuations destructors kernel math
+sequences ;
 IN: cache
 
 TUPLE: cache-assoc < disposable assoc max-age ;
index 5b670b6dc1940d7a67a800658cffddee66b2226a..4c9d97102b3e8d2edebffb28d56a650761e8e4a5 100644 (file)
@@ -1,11 +1,11 @@
 ! Copyright (C) 2003, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: logging.server sequences namespaces concurrency.messaging
-words kernel arrays shuffle tools.annotations
-prettyprint.config prettyprint debugger io.streams.string
-splitting continuations effects generalizations parser strings
-quotations fry accessors math assocs math.order
-sequences.generalizations ;
+USING: accessors arrays assocs concurrency.messaging
+continuations debugger effects generalizations io.streams.string
+kernel math.order namespaces parser prettyprint
+prettyprint.config quotations sequences
+sequences.generalizations splitting strings tools.annotations
+vocabs words ;
 IN: logging
 
 SYMBOLS: DEBUG NOTICE WARNING ERROR CRITICAL ;
index 526df5578bbeed720f6e882c5792c5a9cde893ab..4589f19065e347a71316d8da4f1576be3dbee357 100644 (file)
@@ -1,9 +1,10 @@
 ! Copyright (C) 2007, 2008 Slava Pestov, Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: alien alien.c-types alien.data arrays assocs byte-arrays
-combinators combinators.short-circuit fry kernel kernel.private
-layouts macros math math.bits sequences sequences.private
+combinators combinators.short-circuit kernel kernel.private
+layouts math math.bits sequences sequences.private
 specialized-arrays words ;
+IN: math.bitwise
 SPECIALIZED-ARRAY: uchar
 IN: math.bitwise
 
index 3b28d591cfd720de40d432ad6461cc409ace3b5a..f2aefb985d1b042219c9becbfe1198b300bdd22a 100644 (file)
@@ -1,10 +1,9 @@
 ! Copyright (c) 2007-2010 Slava Pestov, Doug Coleman, Aaron Schaefer, John Benediktsson.
 ! See http://factorcode.org/license.txt for BSD license.
 
-USING: accessors arrays assocs binary-search classes.tuple
-combinators fry hints kernel kernel.private locals math
-math.functions math.order math.ranges namespaces sequences
-sequences.private sorting strings vectors ;
+USING: accessors arrays assocs classes.tuple combinators hints
+kernel kernel.private math math.functions math.order math.ranges
+sequences sequences.private sorting strings vectors ;
 IN: math.combinatorics
 
 <PRIVATE
index a0ac2112a63c90b4ced4765d19d552f34529ac21..a52656691c5fffb49db210008ec86cbd47d241f8 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2004, 2010 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: combinators fry kernel math math.bits math.constants
-math.libm math.order math.private sequences ;
+USING: combinators kernel math math.bits math.constants
+math.libm math.order sequences ;
 IN: math.functions
 
 GENERIC: sqrt ( x -- y ) foldable
index 4dd4581bec571ce12adff676ad8d05cf3bc89de2..8f499be5e43134d9089f89b08e3f529b94bb81ca 100644 (file)
@@ -1,8 +1,7 @@
 ! Copyright (C) 2005, 2010 Slava Pestov, Joe Groff.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays alien.c-types assocs kernel sequences math
-math.functions grouping math.order math.libm math.floats.private
-fry combinators byte-arrays accessors locals ;
+USING: arrays assocs combinators grouping kernel math
+math.functions math.libm math.order sequences ;
 QUALIFIED-WITH: alien.c-types c
 IN: math.vectors
 
index 7bf6690cb9940184f5f6142d99447bf898a2a34e..4b94bd4b6cc3ec3a14cbefe265c62e85741108e4 100644 (file)
@@ -1,8 +1,8 @@
 ! Copyright (C) 2007, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors assocs classes classes.tuple classes.tuple.private
-combinators fry hash-sets hashtables kernel math sequences sets slots
-slots.private summary ;
+USING: accessors assocs classes classes.tuple
+classes.tuple.private combinators hash-sets hashtables kernel
+math sequences sets slots slots.private summary ;
 IN: mirrors
 
 TUPLE: mirror { object read-only } ;
index 9a5967b1cc119fcd3b35dcddc8b877c18febac54..7858745772ff79ae2de05819db6caebb6f5683fd 100644 (file)
@@ -1,7 +1,6 @@
 ! Copyright (C) 2006, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors generic kernel math sequences arrays assocs
-calendar math.order continuations fry ;
+USING: accessors continuations kernel math math.order sequences ;
 IN: models
 
 TUPLE: model < identity-tuple
index 061acc7d9cffc3fd2747200a9f25a13e50fa9304..40f017befdcb32ced244bbf185096985ac451ac4 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2008, 2009 Slava Pestov
 ! See http://factorcode.org/license.txt for BSD license.
-USING: fry kernel models.arrow.smart sequences unicode ;
+USING: kernel models.arrow.smart sequences unicode ;
 IN: models.search
 
 : <search> ( values search quot -- model )
index b261d59c5884116bd591cc266ac9d4c1ee849598..170b94fa2daaeb2b68d3bb7bc59976fdfc995514 100644 (file)
@@ -3,9 +3,9 @@
 ! Portions copyright (C) 2008 Joe Groff.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: alien alien.c-types alien.data assocs colors
-combinators.smart continuations fry init io kernel locals macros
-math math.parser namespaces opengl.gl sequences
-sequences.generalizations specialized-arrays system words ;
+combinators.smart continuations init io kernel math math.parser
+namespaces opengl.gl sequences sequences.generalizations
+specialized-arrays system words ;
 FROM: alien.c-types => float ;
 SPECIALIZED-ARRAY: float
 SPECIALIZED-ARRAY: uint
index da08270c4a2c2f8d5f85df7cb0a6244be972d7d3..356b410493976b3d0b1f737a0a10830b780c4c66 100644 (file)
@@ -1,10 +1,10 @@
 ! Copyright (C) 2009, 2010 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors alien.data assocs cache colors.constants
-destructors kernel opengl opengl.gl opengl.capabilities
-combinators images images.tessellation grouping sequences math
-math.statistics math.vectors generalizations fry arrays
-namespaces system locals literals specialized-arrays ;
+USING: accessors alien.data arrays assocs colors.constants
+combinators destructors images images.tessellation kernel
+literals math math.statistics math.vectors namespaces opengl
+opengl.capabilities opengl.gl sequences specialized-arrays
+system ;
 FROM: alien.c-types => int float ;
 SPECIALIZED-ARRAY: float
 IN: opengl.textures
index 438b572db10e937e9abbc75c0dd7da1381c5a37e..e254563458ba9886b859bbf333b7de78735a4b94 100644 (file)
@@ -1,8 +1,8 @@
 ! Copyright (C) 2009 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: alien.c-types ascii assocs combinators combinators.smart
-endian fry io kernel macros math math.statistics math.vectors
-sequences strings ;
+endian io kernel math math.statistics math.vectors sequences
+strings ;
 IN: pack
 
 GENERIC: >n-byte-array ( obj n -- byte-array )
index f28a22fa4da19a68e8866d483d619281bbe29cc3..859784a27e63927ce0c4364f13a3611216292ecd 100644 (file)
@@ -1,9 +1,9 @@
 ! Copyright (C) 2007 Chris Double.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors assocs combinators combinators.short-circuit
-effects fry kernel make math math.parser multiline namespaces
-parser peg peg.parsers quotations sequences sequences.deep
-splitting stack-checker strings strings.parser summary unicode
+effects kernel make math.parser multiline namespaces parser peg
+peg.parsers quotations sequences sequences.deep splitting
+stack-checker strings strings.parser summary unicode
 vocabs.parser words ;
 FROM: vocabs.parser => search ;
 FROM: peg.search => replace ;
index d285ee337a09cc8faeb952c1c2ba9822b807cca8..741ae42e7d58b8c11702468195b53be2833bfbcb 100644 (file)
@@ -2,7 +2,7 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors arrays assocs byte-arrays byte-vectors classes
 classes.algebra.private classes.maybe classes.private
-classes.tuple combinators continuations effects fry generic
+classes.tuple combinators continuations effects generic
 hash-sets hashtables io.pathnames io.styles kernel lists make
 math math.order math.parser namespaces prettyprint.config
 prettyprint.custom prettyprint.sections prettyprint.stylesheet
index b5d087098feaa0a99a49e06b59c4ff2d1720f153..c7e65ce4f5d606a20712c3d0783c509433428aac 100644 (file)
@@ -1,8 +1,8 @@
 ! Copyright (C) 2007, 2009 Slava Pestov, Daniel Ehrenberg.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors classes.tuple classes.tuple.private combinators
-combinators.short-circuit continuations fry generic kernel
-locals namespaces quotations sequences stack-checker.backend
+combinators.short-circuit continuations generic kernel
+namespaces quotations sequences stack-checker.backend
 stack-checker.dependencies stack-checker.errors
 stack-checker.recursive-state stack-checker.values
 stack-checker.visitor words ;
index aa914885ef0c2e4fc2dc59f035fcc1e52da28a38..8fe5710102f92d428a4171309390875f55938811 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2009, 2010 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel sequences fry math.order math.ranges splitting ;
+USING: kernel sequences splitting ;
 IN: strings.tables
 
 <PRIVATE
index d49ea4b8902cdbbd5366928c5bc4655585a776f7..ac65b148b92f4106c7f80eb54d3cd65745010811 100644 (file)
@@ -1,5 +1,5 @@
 USING: accessors alien alien.accessors alien.c-types
-alien.syntax byte-arrays continuations fry kernel layouts math
+alien.syntax byte-arrays continuations kernel layouts math
 namespaces prettyprint sequences tools.memory tools.test ;
 QUALIFIED: sets
 IN: alien.tests
index 451fd0d6883e88d3e4f9eabbbf1a95d3ba3636bf..73f328401895b48ee875be49adeae9ee3d42a379 100644 (file)
@@ -1,4 +1,4 @@
-USING: arrays combinators fry generalizations kernel macros
+USING: arrays combinators generalizations kernel macros
 math sequences ;
 IN: combinators.short-circuit
 
index c083dc5c21efa7d0b669c674e2561cdc2c5999e2..87157eac086534a57541d99f42996bc8cbc54181 100644 (file)
@@ -1,5 +1,5 @@
-USING: tools.test generalizations kernel math arrays sequences
-ascii fry math.parser io io.streams.string ;
+USING: arrays ascii generalizations kernel math math.parser
+sequences tools.test ;
 IN: generalizations.tests
 
 { 1 2 3 4 1 } [ 1 2 3 4 4 npick ] unit-test
index 34bccc727ea79e3ab9a532de0771041d4a6b2f85..cbe764315da7023c8e4680a5e0569ccf0d08e232 100644 (file)
@@ -2,7 +2,7 @@
 ! Cavazos, Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: kernel kernel.private sequences sequences.private math
-combinators macros math.order math.ranges quotations fry effects
+combinators macros math.order math.ranges quotations effects
 memoize.private arrays ;
 IN: generalizations
 
index e56adb2a44b66271e4e4e5ee7100833e24c3492c..1eb0b67ba831a4807f115858258a8a405b7175f0 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2010 Daniel Ehrenberg
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors fry hash-sets kernel math prettyprint sequences
+USING: accessors hash-sets kernel math prettyprint sequences
 sets sorting tools.test ;
 
 { { 1 2 3 } } [ HS{ 1 2 3 } members natural-sort ] unit-test
index ec51435eec1836278eef5dea327ddf8ac8881be7..96ae5f71a949d1aec30c55842244d4617b801854 100644 (file)
@@ -1,4 +1,4 @@
-USING: accessors assocs continuations fry hashtables kernel make
+USING: accessors assocs continuations hashtables kernel make
 math namespaces sequences tools.test ;
 
 { H{ } } [ { } [ dup ] H{ } map>assoc ] unit-test
index 6893424f172dc2aa4e578ef450e350f57e7edf08..f87cd6eb82392abaa94410ff05a08b59740c4251 100644 (file)
@@ -1,5 +1,5 @@
 USING: alien alien.c-types alien.data arrays classes.struct
-compiler.units continuations destructors fry generic.single io
+compiler.units continuations destructors generic.single io
 io.backend io.directories io.encodings io.encodings.ascii
 io.encodings.binary io.encodings.latin1 io.encodings.string
 io.encodings.utf16 io.encodings.utf8 io.files io.files.private
index 1f9525e5ebbe42259eebc02c40036cc940a7d4e8..4b53cff264197a8899e17216ae638fc9d65ff625 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2007, 2009 Slava Pestov, Eduardo Cavazos.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors assocs kernel locals.types macros.expander fry ;
+USING: accessors kernel locals.types macros.expander ;
 IN: locals.macros
 
 M: lambda expand-macros clone [ expand-macros ] change-body ;
index 84e02fdf5f28e76d7aec3364ca7bd9d8fe266129..45dfaa815fdd01f84ba61d2c132149a2ca52e207 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2007, 2009 Slava Pestov, Eduardo Cavazos.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors arrays assocs effects.parser fry generic.parser
+USING: accessors arrays assocs effects.parser generic.parser
 kernel lexer locals.errors locals.rewrite.closures locals.types
 make namespaces parser quotations sequences splitting
 vocabs.parser words ;
index 283a3bbd5a112ab602d69575759cfe5c9f530a35..f9e026d262926bae849f44d3bde1dfa38950d0cf 100644 (file)
@@ -1,8 +1,7 @@
 ! Copyright (C) 2007, 2008 Slava Pestov, Eduardo Cavazos.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors arrays fry kernel math quotations sequences
-words combinators make locals.backend locals.types
-locals.errors ;
+USING: accessors arrays combinators kernel locals.backend
+locals.errors locals.types make math quotations sequences words ;
 IN: locals.rewrite.point-free
 
 ! Step 3: rewrite locals usage within a single quotation into
index 8ab0f5a213b39fb4d0741fdb9aef5999c91b6b38..69f7c5c8c7e5c60927f9469eeb4cf74408f568f6 100644 (file)
@@ -1,9 +1,8 @@
 ! Copyright (C) 2008, 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors arrays combinators combinators.short-circuit
-continuations effects fry generalizations kernel make math
-namespaces quotations sequences sequences.private vectors words
-;
+continuations effects generalizations kernel make math
+namespaces quotations sequences sequences.private vectors words ;
 IN: macros.expander
 
 GENERIC: expand-macros ( quot -- quot' )
index 2d0424415cea8cdf6d2c00ce4e4029778ee986ba..435edd92d5d4244fc66195d9004dda10d6a86ac1 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2007, 2010 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors combinators compiler.units definitions effects
-effects.parser fry kernel memoize words ;
+kernel memoize words ;
 IN: macros
 
 <PRIVATE
index 20ec7078c0f0137ddbca5a61ae68672156788c13..0a0b4c85bb667d50bd518236f427a74f4dc9c832 100644 (file)
@@ -1,8 +1,7 @@
 ! Copyright (C) 2007, 2010 Slava Pestov, Daniel Ehrenberg.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors arrays assocs definitions effects
-effects.parser fry hashtables.identity kernel kernel.private
-math sequences sequences.private words ;
+USING: accessors arrays assocs definitions effects kernel
+kernel.private math sequences sequences.private words ;
 IN: memoize
 
 <PRIVATE
index 1e384cd276a2c5f5d52e59b662d03ede3d54ff7a..defb658da2dee206dbaf8daa60445fd897eae568 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2009 Joe Groff.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: tools.test generalizations kernel math arrays sequences
-sequences.generalizations ascii fry math.parser io io.streams.string ;
+USING: io io.streams.string kernel math sequences
+sequences.generalizations tools.test ;
 IN: sequences.generalizations.tests
 
 { 1 2 3 4 } [ { 1 2 3 4 } 4 firstn ] unit-test
index 49a43c9c19a21720835408b4598b74faf16cd4b9..afab0b3217ca42cc0255acb9cee81a9c873f6d54 100644 (file)
@@ -1,8 +1,7 @@
 ! Copyright (C) 2009 Joe Groff.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays combinators fry generalizations kernel macros math
-math.order memoize.private quotations sequences
-sequences.private ;
+USING: arrays combinators generalizations kernel math math.order
+memoize.private quotations sequences sequences.private ;
 IN: sequences.generalizations
 
 MACRO: (nsequence) ( n -- quot )
index c37567c5020fc987a442a79ba4eef771b5eef379..87f1adaf3b8887a61211e9ea1a70d0b2abab068f 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2010 Daniel Ehrenberg
 ! See http://factorcode.org/license.txt for BSD license.
-USING: assocs fry hashtables kernel math sequences vectors ;
+USING: assocs hashtables kernel math sequences vectors ;
 IN: sets
 
 ! Set protocol