Fixed bug in MAKE-STRING-PORT-FILTER: An argument to read-string! was missing
This commit is contained in:
parent
1e098d1ced
commit
bdf5f8e09f
|
@ -904,7 +904,7 @@
|
|||
(buf (make-string buflen)))
|
||||
(lambda ()
|
||||
(let lp ()
|
||||
(cond ((read-string! buf 0 buflen) =>
|
||||
(cond ((read-string! buf (current-input-port) 0 buflen) =>
|
||||
(lambda (nread)
|
||||
(display (filter (if (= nread buflen) buf
|
||||
(substring buf 0 nread)))) ; last one.
|
||||
|
|
Loading…
Reference in New Issue