Remove 'prettyprint' from a few USING: forms

Slava Pestov 2010-05-04 02:34:37 -05:00
parent 6344b69986
commit 8757cb3bd7
3 changed files with 3 additions and 3 deletions

2
basis/compression/lzw/lzw.factor Normal file → Executable file
View File

@ -1,7 +1,7 @@
! Copyright (C) 2009 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: accessors combinators io kernel math namespaces
prettyprint sequences vectors ;
sequences vectors ;
QUALIFIED-WITH: bitstreams bs
IN: compression.lzw

2
basis/images/ppm/ppm.factor Normal file → Executable file
View File

@ -2,7 +2,7 @@
! See http://factorcode.org/license.txt for BSD license.
USING: accessors ascii combinators images images.loader io
io.encodings.ascii io.encodings.string kernel locals make math
math.parser prettyprint sequences ;
math.parser sequences ;
IN: images.ppm
SINGLETON: ppm-image

2
basis/images/tiff/tiff.factor Normal file → Executable file
View File

@ -4,7 +4,7 @@ USING: accessors arrays assocs byte-arrays classes combinators
compression.lzw endian fry grouping images io
io.binary io.encodings.ascii io.encodings.binary
io.encodings.string io.encodings.utf8 io.files kernel math
math.bitwise math.order math.parser pack prettyprint sequences
math.bitwise math.order math.parser pack sequences
strings math.vectors specialized-arrays locals
images.loader ;
FROM: alien.c-types => float ;