Compare commits

..

No commits in common. "938fd7d41bdb6b5bac5034a85adf0e0b30aefe6e" and "7a24be4b9c2e0bbf6aa3a11bcbb585d11e94b71b" have entirely different histories.

View File

@ -39,7 +39,7 @@
(define (foreach-line thunk)
(let loop ()
(let ((line (get-line (current-input-port))))
(unless (eof-object? line)
(when (not (eof-object? line))
(display (thunk line))
(loop)))))