diff --git a/module/ice-9/read.scm b/module/ice-9/read.scm index 8a6c56c8b..7ce4b416a 100644 --- a/module/ice-9/read.scm +++ b/module/ice-9/read.scm @@ -755,7 +755,7 @@ (let lp ((ch (next))) (cond ((eof-object? ch) - (error "unexpected end of input while looking for !#")) + (error "unterminated `#! ... !#' comment")) ((eqv? ch #\!) (let ((ch (next))) (if (eqv? ch #\#)