Skip to content

Commit

Permalink
fix #6133 for #6132
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Mar 13, 2014
1 parent 14d0a7d commit 48ac426
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/julia-parser.scm
Original file line number Diff line number Diff line change
Expand Up @@ -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 #\#)
Expand Down

0 comments on commit 48ac426

Please sign in to comment.