diff --git a/src/julia-parser.scm b/src/julia-parser.scm index a8057b068b56b..4d14a0ec46f0b 100644 --- a/src/julia-parser.scm +++ b/src/julia-parser.scm @@ -360,7 +360,7 @@ (define (skip-multiline-comment port count) (let ((c (read-char port))) (if (eof-object? c) - (error "unterminated multi-line comment #= ... =#") + (error "incomplete: unterminated multi-line comment #= ... =#") (begin (if (eqv? c #\=) (let ((c (peek-char port))) (if (eqv? c #\#)