Comment out JPEG code until we figure out if we want default bootstrap to depend on BLAS or not

db4
Slava Pestov 2009-05-16 10:02:48 -05:00
parent 306d3c3b32
commit 7c705c4db4
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: constructors kernel splitting unicode.case combinators USING: constructors kernel splitting unicode.case combinators
accessors images.bitmap images.tiff images io.pathnames accessors images.bitmap images.tiff images io.pathnames
images.jpeg images.png ; images.png ;
IN: images.loader IN: images.loader
ERROR: unknown-image-extension extension ; ERROR: unknown-image-extension extension ;
@ -12,8 +12,8 @@ ERROR: unknown-image-extension extension ;
{ "bmp" [ bitmap-image ] } { "bmp" [ bitmap-image ] }
{ "tif" [ tiff-image ] } { "tif" [ tiff-image ] }
{ "tiff" [ tiff-image ] } { "tiff" [ tiff-image ] }
{ "jpg" [ jpeg-image ] } ! { "jpg" [ jpeg-image ] }
{ "jpeg" [ jpeg-image ] } ! { "jpeg" [ jpeg-image ] }
{ "png" [ png-image ] } { "png" [ png-image ] }
[ unknown-image-extension ] [ unknown-image-extension ]
} case ; } case ;