]> gitweb.factorcode.org Git - factor.git/commitdiff
Remove 'prettyprint' from a few USING: forms
authorSlava Pestov <slava@factorcode.org>
Tue, 4 May 2010 07:34:37 +0000 (02:34 -0500)
committerSlava Pestov <slava@factorcode.org>
Tue, 4 May 2010 07:34:37 +0000 (02:34 -0500)
basis/compression/lzw/lzw.factor [changed mode: 0644->0755]
basis/images/ppm/ppm.factor [changed mode: 0644->0755]
basis/images/tiff/tiff.factor [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 340e455..f61a02c
@@ -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
 
old mode 100644 (file)
new mode 100755 (executable)
index d50d517..9610189
@@ -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
old mode 100644 (file)
new mode 100755 (executable)
index 4a82545..a1880a3
@@ -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 ;