]> gitweb.factorcode.org Git - factor.git/commitdiff
core: cleanup USING lists.
authorJohn Benediktsson <mrjbq7@gmail.com>
Tue, 5 Mar 2013 18:34:47 +0000 (10:34 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Tue, 5 Mar 2013 18:34:47 +0000 (10:34 -0800)
40 files changed:
core/alien/strings/strings.factor
core/bootstrap/layouts/layouts.factor
core/byte-arrays/byte-arrays.factor
core/byte-vectors/byte-vectors.factor
core/checksums/crc32/crc32.factor
core/destructors/destructors.factor
core/effects/effects.factor
core/graphs/graphs.factor
core/growable/growable.factor
core/hash-sets/hash-sets.factor
core/hashtables/hashtables.factor
core/init/init.factor
core/io/backend/backend.factor
core/io/files/files.factor
core/io/io.factor
core/io/streams/byte-array/byte-array.factor
core/io/streams/c/c.factor
core/io/streams/memory/memory.factor
core/io/streams/plain/plain.factor
core/io/streams/sequence/sequence.factor
core/layouts/layouts.factor
core/lexer/lexer.factor
core/math/integers/integers.factor
core/parser/parser.factor
core/quotations/quotations.factor
core/sbufs/sbufs.factor
core/sorting/sorting.factor
core/source-files/errors/errors.factor
core/source-files/source-files.factor
core/splitting/splitting.factor
core/strings/parser/parser.factor
core/strings/strings.factor
core/syntax/syntax.factor
core/vectors/vectors.factor
core/vocabs/parser/parser.factor
core/vocabs/vocabs.factor
core/words/alias/alias.factor
core/words/constant/constant.factor
core/words/symbol/symbol.factor
core/words/words.factor

index 8594cf2f9beacf6e865c0a71d7024b78984cc350..346ad45673a14ec8cbc5916bb78e89a04264a0a8 100644 (file)
@@ -1,9 +1,9 @@
 ! Copyright (C) 2008, 2011 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays sequences kernel kernel.private accessors math
-alien.accessors byte-arrays io io.encodings io.encodings.utf8
-io.encodings.utf16n io.streams.byte-array io.streams.memory system
-system.private alien strings combinators namespaces init ;
+USING: accessors alien arrays byte-arrays init io io.encodings
+io.encodings.utf16n io.encodings.utf8 io.streams.byte-array
+io.streams.memory kernel kernel.private namespaces sequences
+strings system system.private ;
 IN: alien.strings
 
 GENERIC# alien>string 1 ( c-ptr encoding -- string/f )
index e139faa5058c0f972a492d266db9b54b5da643c0..7ac8a8590d0a1eb7e41ce8fcaf2297e0028d994a 100644 (file)
@@ -1,9 +1,7 @@
 ! Copyright (C) 2007, 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: namespaces math words kernel alien byte-arrays
-hashtables vectors strings sbufs arrays
-quotations assocs layouts classes.tuple.private
-kernel.private ;
+USING: alien arrays byte-arrays kernel layouts math namespaces
+quotations strings words ;
 
 16 data-alignment set
 
index f9c62800912d9ef68528a92bfac71bbf4a45c341..d4d2d95cf2a7f188a183d6bdcdcd7629f99f6a80 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2007, 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors kernel kernel.private alien.accessors sequences
-sequences.private math ;
+USING: accessors alien.accessors kernel math sequences
+sequences.private ;
 IN: byte-arrays
 
 M: byte-array clone (clone) ; inline
index e4bc48f69132bf7c938f6d066c2fdc6d7b012e75..54f464a9dc6adacac2369a9f9bf3b054a5e2ee0b 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2008 Slava Pestov.\r
 ! See http://factorcode.org/license.txt for BSD license.\r
-USING: arrays kernel kernel.private math sequences\r
-sequences.private growable byte-arrays accessors ;\r
+USING: accessors byte-arrays growable kernel math sequences\r
+sequences.private ;\r
 IN: byte-vectors\r
 \r
 TUPLE: byte-vector\r
index 415317c813c2d01fe1f0068bd1755c34f3c84cc4..da3df72974b1255b3ace70009fb5c17283d0d160 100644 (file)
@@ -1,8 +1,7 @@
 ! Copyright (C) 2006 Doug Coleman
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel math sequences sequences.private namespaces
-words io io.binary io.files quotations
-definitions checksums ;
+USING: checksums io.binary kernel math sequences
+sequences.private ;
 IN: checksums.crc32
 
 CONSTANT: crc32-polynomial 0xedb88320
index 5f8e7b48f0936fa4a62538bb074489cf55806c73..697bc2eeefa04feace8d4f47358390804cbabc45 100755 (executable)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2007, 2010 Doug Coleman, Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors continuations kernel namespaces make
-sequences vectors sets assocs init math ;
+USING: accessors assocs continuations init kernel make
+namespaces sequences sets ;
 FROM: namespaces => set ;
 IN: destructors
 
index 1ac78fcae876757f2be3d9880267beb9700ae6e1..46bd9eeaa9bbd7c84be2f50e4fc900e70f69427d 100644 (file)
@@ -1,8 +1,7 @@
 ! Copyright (C) 2006, 2010 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel math math.parser math.order namespaces make
-sequences strings words assocs combinators accessors arrays
-quotations classes.algebra classes ;
+USING: accessors arrays classes combinators kernel make math
+math.order math.parser sequences strings words ;
 IN: effects
 
 TUPLE: effect
index e35e29ff140d422df2bac344fea0ac7ed07dbddd..eed2a69c33ab9a378896bac2470c3a7d669e0312 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2006, 2007 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: assocs kernel namespaces sequences sets ;
+USING: assocs kernel sequences sets ;
 IN: graphs
 
 <PRIVATE
index 0144cdf58f540e0924504f63eaaa87fd67885591..8903187fbd06fbeafa94ee1ebda26eb709f41b37 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2005, 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors kernel kernel.private math math.private
-sequences sequences.private ;
+USING: accessors kernel math math.private sequences
+sequences.private ;
 IN: growable
 
 MIXIN: growable
index aa35a17ab0a21eec4badfee762a8241814099dbc..62fe7d016a5a7f182d377d5d46984a64336e983f 100644 (file)
@@ -1,8 +1,7 @@
 ! Copyright (C) 2010 Daniel Ehrenberg
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors assocs hashtables kernel sets sets.private
-sequences parser ;
-
+USING: accessors assocs hashtables kernel sequences sets
+sets.private ;
 IN: hash-sets
 
 ! In a better implementation, less memory would be used
index 4194fc796a636dd77b55c66b6767ffc1bf52da7f..57dae0171f42ba584fb6e8c29f81a6501d4b6557 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2005, 2011 John Benediktsson, Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors arrays kernel kernel.private slots.private math
-assocs math.private sequences sequences.private vectors ;
+USING: accessors arrays assocs kernel kernel.private math
+math.private sequences sequences.private slots.private vectors ;
 IN: hashtables
 
 TUPLE: hashtable
index dfec564298605e790a56afcc59088d688fe6caa4..d7554aee2f3c15aa91cd4599f235159c17b8184f 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2004, 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: continuations continuations.private kernel
-kernel.private sequences assocs namespaces namespaces.private ;
+USING: assocs continuations continuations.private kernel
+kernel.private namespaces ;
 IN: init
 
 SYMBOL: startup-hooks
index 45425653e31d06ef890431edea2776b732b7884f..49bcee73bee63e77bec1e62d1707fa7088ea171f 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2007, 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: init kernel system namespaces io io.encodings
-io.encodings.utf8 assocs splitting alien ;
+USING: assocs init io io.encodings io.encodings.utf8 kernel
+namespaces system ;
 IN: io.backend
 
 SYMBOL: io-backend
index 02100bae5b4c21446863f1db52e41e9cfdd0a5b2..a5e005745afc8ecedcbb0fac0018c369528b2ce6 100644 (file)
@@ -1,8 +1,8 @@
 ! Copyright (C) 2004, 2009 Slava Pestov, Daniel Ehrenberg.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel kernel.private sequences init namespaces system io
-io.encodings.utf8 io.backend io.pathnames io.encodings io.files.private
-alien.strings splitting ;
+USING: alien.strings init io io.backend io.encodings
+io.encodings.utf8 io.files.private io.pathnames kernel
+kernel.private namespaces sequences splitting system ;
 IN: io.files
 
 MIXIN: file-reader
index 248571616529546a56b7e335464b9305bd91a272..83414ec551afb0cad4480e3e701d34f7c6851362 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2003, 2010 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: combinators destructors kernel kernel.private math
-namespaces sequences sequences.private ;
+USING: destructors kernel kernel.private math namespaces
+sequences sequences.private ;
 IN: io
 
 SYMBOLS: +byte+ +character+ ;
index 930bee22399a3292796af202b13ec8cb5ca118b5..e9186c03feba1e4fa0e853f9053c601887e75b91 100644 (file)
@@ -1,8 +1,8 @@
 ! Copyright (C) 2008, 2009 Daniel Ehrenberg
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors byte-arrays byte-vectors destructors io
-io.encodings io.private io.streams.sequence kernel namespaces
-sequences sequences.private ;
+io.encodings io.streams.sequence kernel namespaces sequences
+sequences.private ;
 IN: io.streams.byte-array
 
 INSTANCE: byte-vector output-stream
index 58043600870bcb6b5def8cae3c49fc1955fac5bd..4582f5f4f3cd597cb1bb80bc0aff386a2630e99e 100644 (file)
@@ -1,9 +1,8 @@
 ! Copyright (C) 2004, 2010 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: alien alien.strings kernel kernel.private namespaces make
-io io.encodings sequences math generic threads.private classes
-io.backend io.files io.encodings.utf8 continuations destructors
-byte-arrays accessors combinators ;
+USING: accessors alien alien.strings byte-arrays destructors io
+io.backend io.encodings.utf8 io.files kernel kernel.private
+make math sequences threads.private ;
 IN: io.streams.c
 
 TUPLE: c-stream < disposable handle ;
index 9e07143839f93905e64e1f17c2c9362c4215a080..142dd7a07ff02e0fd9b9de476fffdaaefe3f1b72 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel accessors alien alien.accessors math io ;
+USING: accessors alien alien.accessors io kernel ;
 IN: io.streams.memory
 
 TUPLE: memory-stream alien ;
index 9cd18adcc6da2cd84fb724444a496605b91edf00..4ea1996f88fbef341b8f632afcda4f5e82483e47 100644 (file)
@@ -6,4 +6,4 @@ IN: io.streams.plain
 MIXIN: plain-writer
 
 M: plain-writer stream-nl
-    CHAR: \n swap stream-write1 ;
\ No newline at end of file
+    CHAR: \n swap stream-write1 ;
index 8894fdf32228cd4bf8828fa057caa899f6d68496..47a006cbb12ac8bdba2b4a8844cc113d8b3362c3 100644 (file)
@@ -1,7 +1,8 @@
 ! Copyright (C) 2009 Daniel Ehrenberg
 ! See http://factorcode.org/license.txt for BSD license.
-USING: sequences io io.streams.plain kernel accessors math math.order
-growable destructors combinators sequences.private io.private ;
+USING: accessors combinators destructors growable io io.private
+io.streams.plain kernel math math.order sequences
+sequences.private ;
 IN: io.streams.sequence
 
 ! Readers
index e6e238eefd28eb9c01317fc87e2c8ac9a1593325..2e2b1fe6809a505d01356f30e80bed79a973ae11 100644 (file)
@@ -1,7 +1,6 @@
 ! Copyright (C) 2007, 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: namespaces math words kernel assocs classes
-math.order kernel.private sequences sequences.private ;
+USING: assocs kernel kernel.private math math.order namespaces ;
 IN: layouts
 
 SYMBOL: data-alignment
index f91c5e79cb68c6cd4fec6696c5f03dc61ad41da7..1e9c7a28c29314cfb28654caa1bac280bd2a0979 100644 (file)
@@ -1,8 +1,8 @@
 ! Copyright (C) 2008, 2010 Slava Pestov, Joe Groff.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel sequences accessors namespaces math words strings
-io vectors arrays math.parser combinators continuations
-source-files.errors ;
+USING: accessors arrays combinators continuations io kernel
+math math.parser namespaces sequences source-files.errors
+strings vectors ;
 IN: lexer
 
 TUPLE: lexer
index b2b4f9e1575795cdffa1ea3f8c134e3a36f261b5..0f777055fdac84a511f6954434e4e5e5bb9bac44 100644 (file)
@@ -1,8 +1,8 @@
 ! Copyright (C) 2004, 2010 Slava Pestov.
 ! Copyright (C) 2008, Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel kernel.private sequences sequences.private math
-math.private math.order combinators ;
+USING: combinators kernel kernel.private math math.order
+math.private ;
 IN: math.integers.private
 
 : fixnum-min ( x y -- z ) [ fixnum< ] most ; foldable
index 873ca9db4ca0d371ffaed086caf46c360888d6f5..912406733536918b2983162009de31c5586e653a 100644 (file)
@@ -1,11 +1,10 @@
 ! Copyright (C) 2005, 2010 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays definitions generic assocs kernel math namespaces
-sequences strings vectors words words.symbol quotations io
-combinators sorting splitting math.parser effects continuations
-io.files vocabs io.encodings.utf8 source-files classes
-hashtables compiler.units accessors sets lexer vocabs.parser
-slots parser.notes classes.algebra ;
+USING: accessors arrays assocs classes combinators
+compiler.units continuations definitions effects io
+io.encodings.utf8 io.files kernel lexer math.parser namespaces
+parser.notes quotations sequences slots source-files vectors
+vocabs vocabs.parser words words.symbol ;
 IN: parser
 
 : location ( -- loc )
index 9b85289bd69deaf56e2447b07bcf717f5832f690..7e7a77d4e1f1abe7873b24a0626869cc3625ee39 100644 (file)
@@ -1,8 +1,7 @@
 ! Copyright (C) 2006, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors arrays sequences sequences.private
-kernel kernel.private math assocs quotations.private
-slots.private ;
+USING: accessors arrays kernel kernel.private math sequences
+sequences.private slots.private ;
 IN: quotations
 
 <PRIVATE
index a628ab35a15b41d998ff6385e1788d2f82ae83ed..d90ae75108d86a33968f4d2495c608fe5bf70da8 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2004, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors kernel math sequences.private sequences
-strings growable strings.private ;
+USING: accessors growable kernel math sequences
+sequences.private strings strings.private ;
 IN: sbufs
 
 TUPLE: sbuf
index c1719f61524ec87ee529db4857453d72e3102540..29bcafae20653b29b494eeb9d9f4b3e5e9c01da5 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2005, 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors arrays assocs kernel math vectors math.order
-sequences sequences.private ;
+USING: accessors arrays assocs kernel math math.order sequences
+sequences.private vectors ;
 IN: sorting
 
 ! Optimized merge-sort:
index b3b6daee5957174fdb8a559caa25333f6576e6e9..5077ec0b67328bd547c3426f836251a1dd482bef 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors assocs kernel math.order sorting sequences definitions
-namespaces arrays splitting io math.parser math init continuations ;
+USING: accessors assocs continuations definitions init io
+kernel math math.parser namespaces sequences sorting ;
 IN: source-files.errors
 
 GENERIC: error-file ( error -- file )
index 6807e51515b0b2aed64354b16f21d78c04ccdf56..13e93f058253b1f7a5f679282c2cebdedb471eeb 100644 (file)
@@ -1,10 +1,9 @@
 ! Copyright (C) 2007, 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays definitions generic assocs kernel math namespaces
-sequences strings vectors words quotations io io.files
-io.pathnames combinators sorting splitting math.parser effects
-continuations checksums checksums.crc32 vocabs hashtables
-compiler.units io.encodings.utf8 accessors source-files.errors ;
+USING: accessors arrays assocs checksums checksums.crc32
+compiler.units continuations definitions io.encodings.utf8
+io.files io.pathnames kernel namespaces sequences
+source-files.errors strings words ;
 IN: source-files
 
 SYMBOL: source-files
index 65125eed467b552c16fb6d040af38b2d10f5d83b..d2348b9e6bd05a06cd3fb1240108bb9619dd40b7 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2005, 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays kernel make math sequences sets strings ;
+USING: arrays kernel make math sequences strings ;
 IN: splitting
 
 <PRIVATE
index 037b0ad52f13f922e30413483b98565d9666dbe9..7544be1da76af5e304de6437ff27188d50990cc1 100644 (file)
@@ -1,8 +1,7 @@
 ! Copyright (C) 2008, 2009 Slava Pestov, Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors arrays assocs combinators kernel lexer make
-math math.order math.parser namespaces parser sequences
-splitting strings ;
+math math.parser namespaces sequences splitting strings ;
 IN: strings.parser
 
 ERROR: bad-escape char ;
index f0e589b7db61ddf89b2aebc216eb950fa087676d..83a44d0f14c2cd1e021d0ae3b14873cf1a89d151 100644 (file)
@@ -1,7 +1,8 @@
 ! Copyright (C) 2003, 2010 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors alien.accessors byte-arrays kernel math.private
-sequences kernel.private math sequences.private slots.private ;
+USING: accessors alien.accessors byte-arrays kernel
+kernel.private math math.private sequences sequences.private
+slots.private ;
 IN: strings
 
 <PRIVATE
index 441a4dfb7dff6895f8576feed0d9f14ef2888237..78a14f68fca251e21dcee7352cf3cd6410f33d3b 100644 (file)
@@ -1,15 +1,15 @@
 ! Copyright (C) 2004, 2010 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors alien arrays byte-arrays byte-vectors definitions generic
-hashtables kernel math namespaces parser lexer sequences strings
-strings.parser sbufs vectors words words.symbol words.constant
-words.alias quotations io assocs splitting classes.tuple
-generic.standard generic.hook generic.math generic.parser classes
-io.pathnames vocabs vocabs.parser classes.parser classes.union
-classes.intersection classes.mixin classes.predicate
-classes.singleton classes.tuple.parser compiler.units classes.maybe
-combinators effects.parser slots hash-sets source-files
-classes.algebra.private ;
+USING: accessors arrays byte-arrays byte-vectors
+classes.algebra.private classes.intersection classes.maybe
+classes.mixin classes.parser classes.predicate
+classes.singleton classes.tuple classes.tuple.parser
+classes.union combinators compiler.units definitions
+effects.parser generic generic.hook generic.math generic.parser
+generic.standard hash-sets hashtables io.pathnames kernel lexer
+math namespaces parser quotations sbufs sequences slots
+source-files splitting strings strings.parser vectors
+vocabs.parser words words.alias words.constant words.symbol ;
 IN: bootstrap.syntax
 
 ! These words are defined as a top-level form, instead of with
index e9def85fbb5b068f3147732dddab4a399d452ca1..c1bffbb9a10e1e005a82d70532f7c5cc1f5299bb 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2004, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays kernel math sequences sequences.private growable
-accessors ;
+USING: accessors arrays growable kernel math sequences
+sequences.private ;
 IN: vectors
 
 TUPLE: vector
index dccf1f1be6afbdc69b92f175d62412f9c0da2c9e..83a1831eab87bc75840a6c4eff511425ac4cc80d 100644 (file)
@@ -1,10 +1,9 @@
 ! Copyright (C) 2007, 2010 Daniel Ehrenberg, Bruno Deferrari,
 ! Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: assocs hashtables kernel namespaces sequences
-sets strings vocabs sorting accessors arrays compiler.units
-combinators vectors splitting continuations math words
-parser.notes ;
+USING: accessors arrays assocs combinators compiler.units
+continuations hashtables kernel math namespaces parser.notes
+sequences sets sorting splitting vectors vocabs words ;
 IN: vocabs.parser
 
 ERROR: no-word-error name ;
index f86dcda135540db2a72f91d4839a73760c6c40f0..256b15601f2ae4cfe0383ad104896446cd8cba3f 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2007, 2009 Eduardo Cavazos, Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors assocs definitions kernel namespaces sequences
-sets sorting splitting strings ;
+sorting splitting strings ;
 IN: vocabs
 
 SYMBOL: dictionary
index 73e270dffcf00484c60d5e1b36ff4e69c83a5073..71118d9c936270db4633d8b5ad26d6a1ba98fcfe 100644 (file)
@@ -1,6 +1,7 @@
 ! Copyright (C) 2008 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: quotations effects accessors sequences words kernel definitions ;
+USING: accessors definitions effects kernel quotations
+sequences words ;
 IN: words.alias
 
 PREDICATE: alias < word "alias" word-prop ;
@@ -14,4 +15,4 @@ M: alias reset-word
 
 M: alias definer drop \ ALIAS: f ;
 
-M: alias definition def>> first 1quotation ;
\ No newline at end of file
+M: alias definition def>> first 1quotation ;
index 30503bc92fea3b73f59c670a18d0ff2d0ddc6c10..0d45bbb0fdba21b26cf6ef020f2ed7d54e0227e1 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2008, 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors kernel sequences words definitions quotations ;
+USING: definitions kernel quotations words ;
 IN: words.constant
 
 PREDICATE: constant < word "constant" word-prop >boolean ;
index fdb7e862caf6acb11b6d2f90c85fa4ff93f1c229..0d94ea5abe4fa9a77c473ddf0cf60ba9f21ccbfd 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel sequences accessors definitions words ;
+USING: accessors definitions kernel sequences words ;
 IN: words.symbol
 
 PREDICATE: symbol < word
index d338d7f5762ea5f4670b1fce3168e557b45430b2..c17f2657537ed6066f7ea0ae1053f225008b00c4 100644 (file)
@@ -1,9 +1,8 @@
 ! Copyright (C) 2004, 2010 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors arrays definitions kernel kernel.private
-slots.private math namespaces sequences strings vectors sbufs
-quotations assocs hashtables sorting vocabs math.order sets
-words.private ;
+USING: accessors arrays assocs definitions hashtables kernel
+kernel.private math math.order namespaces quotations sequences
+slots.private strings vocabs ;
 FROM: assocs => change-at ;
 IN: words