Issue #488 - Externalize errors

This commit is contained in:
Justin Ethier 2022-07-17 11:43:10 -04:00
parent be48ac9ea7
commit 6b15892446

View file

@ -48,7 +48,7 @@
(when (not (eof-object? line)) (when (not (eof-object? line))
(with-handler (with-handler
(lambda (obj) (lambda (obj)
(display `(Error processing line ,line details ,obj))) (display `(Error processing line ,line details ,obj) (current-error-port)))
(display (convert-line line)) (display (convert-line line))
(newline)) (newline))