Fix load errors

db4
Slava Pestov 2008-12-08 20:06:44 -06:00
parent 5bfa17d962
commit 1d57b0bc50
4 changed files with 9 additions and 8 deletions

View File

@ -1,6 +1,6 @@
! Copyright (C) 2008 Slava Pestov. ! Copyright (C) 2008 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: alien.c-types io.encodings io.encodings.utf16 ; USING: alien.c-types io.encodings io.encodings.utf16 kernel ;
IN: io.encodings.utf16n IN: io.encodings.utf16n
! Native-order UTF-16 ! Native-order UTF-16

View File

@ -1,7 +1,7 @@
! Copyright (C) 2008 Slava Pestov ! Copyright (C) 2008 Slava Pestov
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: kernel math io io.encodings destructors accessors USING: kernel math io io.encodings destructors accessors
sequences namespaces ; sequences namespaces byte-vectors ;
IN: io.streams.limited IN: io.streams.limited
TUPLE: limited-stream stream count limit ; TUPLE: limited-stream stream count limit ;

View File

@ -1,8 +1,8 @@
IN: tools.deploy.tests IN: tools.deploy.tests
USING: tools.test system io.files kernel tools.deploy.config USING: tools.test system io.files kernel tools.deploy.config
tools.deploy.backend math sequences io.launcher arrays tools.deploy.config.editor tools.deploy.backend math sequences
namespaces continuations layouts accessors io.encodings.ascii io.launcher arrays namespaces continuations layouts accessors
urls math.parser ; io.encodings.ascii urls math.parser ;
: shake-and-bake ( vocab -- ) : shake-and-bake ( vocab -- )
[ "test.image" temp-file delete-file ] ignore-errors [ "test.image" temp-file delete-file ] ignore-errors

View File

@ -2,9 +2,10 @@
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: kernel math sequences vectors classes classes.algebra USING: kernel math sequences vectors classes classes.algebra
combinators arrays words assocs parser namespaces make combinators arrays words assocs parser namespaces make
definitions prettyprint prettyprint.backend quotations definitions prettyprint prettyprint.backend prettyprint.custom
generalizations debugger io compiler.units kernel.private quotations generalizations debugger io compiler.units
effects accessors hashtables sorting shuffle math.order sets ; kernel.private effects accessors hashtables sorting shuffle
math.order sets ;
IN: multi-methods IN: multi-methods
! PART I: Converting hook specializers ! PART I: Converting hook specializers