diff --git a/src/6001/pic-read.scm b/src/6001/pic-read.scm index 4fff1c379..510510d13 100644 --- a/src/6001/pic-read.scm +++ b/src/6001/pic-read.scm @@ -31,6 +31,7 @@ USA. (define (pgm-file->picture filename) (call-with-input-file (standard-pathname filename "pgm") (lambda (port) + (port/set-coding port 'BINARY) (get-body port (get-header port))))) (define (standard-pathname filename type)