diff options
Diffstat (limited to 'pnm.scm')
-rw-r--r-- | pnm.scm | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -333,4 +333,5 @@ (else (slib:error 'pnm:array-write type 'unrecognized 'type)))) (call-with-open-ports (open-file port 'wb) - (lambda (port) (pnm:array-write type array maxval port))))) + (lambda (port) + (apply pnm:array-write type array maxval port comments))))) |