fix load errors

db4
Doug Coleman 2008-04-14 03:03:49 -05:00
parent 5c7d24e133
commit 9140e3e452
6 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
! Copyright (C) 2003, 2008 Slava Pestov. ! Copyright (C) 2003, 2008 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: fry hashtables io io.streams.string kernel math USING: fry hashtables io io.streams.string kernel math sets
namespaces math.parser assocs sequences strings splitting ascii namespaces math.parser assocs sequences strings splitting ascii
io.encodings.utf8 io.encodings.string namespaces unicode.case io.encodings.utf8 io.encodings.string namespaces unicode.case
combinators vectors sorting accessors calendar combinators vectors sorting accessors calendar

View File

@ -1,6 +1,6 @@
! Copyright (C) 2006, 2008 Slava Pestov ! Copyright (C) 2006, 2008 Slava Pestov
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: kernel continuations sequences math namespaces USING: kernel continuations sequences math namespaces sets
math.parser assocs regexp fry unicode.categories sequences ; math.parser assocs regexp fry unicode.categories sequences ;
IN: http.server.validators IN: http.server.validators

View File

@ -4,7 +4,7 @@
USING: namespaces io io.timeouts kernel logging io.sockets USING: namespaces io io.timeouts kernel logging io.sockets
sequences combinators sequences.lib splitting assocs strings sequences combinators sequences.lib splitting assocs strings
math.parser random system calendar io.encodings.ascii math.parser random system calendar io.encodings.ascii
calendar.format accessors ; calendar.format accessors sets ;
IN: smtp IN: smtp
SYMBOL: smtp-domain SYMBOL: smtp-domain

View File

@ -3,7 +3,7 @@
USING: qualified io.streams.c init fry namespaces assocs kernel USING: qualified io.streams.c init fry namespaces assocs kernel
parser tools.deploy.config vocabs sequences words words.private parser tools.deploy.config vocabs sequences words words.private
memory kernel.private continuations io prettyprint memory kernel.private continuations io prettyprint
vocabs.loader debugger system strings ; vocabs.loader debugger system strings sets ;
QUALIFIED: bootstrap.stage2 QUALIFIED: bootstrap.stage2
QUALIFIED: classes QUALIFIED: classes
QUALIFIED: command-line QUALIFIED: command-line

View File

@ -29,7 +29,7 @@ M: tuple-array set-nth ( elt n seq -- )
tuck >r >r tuple-array-example deconstruct r> r> tuck >r >r tuple-array-example deconstruct r> r>
delegate set-nth ; delegate set-nth ;
M: tuple-array new tuple-array-example >tuple <tuple-array> ; M: tuple-array new-sequence tuple-array-example >tuple <tuple-array> ;
: >tuple-array ( seq -- tuple-array/seq ) : >tuple-array ( seq -- tuple-array/seq )
dup empty? [ dup empty? [

View File

@ -1,6 +1,6 @@
USING: arrays io kernel math namespaces splitting prettyprint USING: arrays io kernel math namespaces splitting prettyprint
sequences sorting vectors words inverse inspector shuffle sequences sorting vectors words inverse inspector shuffle
math.functions ; math.functions sets ;
IN: units IN: units
TUPLE: dimensioned value top bot ; TUPLE: dimensioned value top bot ;