diff --git a/parser.scm b/parser.scm index 52d430b1..582429a5 100644 --- a/parser.scm +++ b/parser.scm @@ -320,6 +320,8 @@ ((or (equal? #\" c) (equal? #\\ c)) (cons c buf)) + ((equal? #\n c) + (cons #\newline buf)) (else (parse-error "invalid escape character in string" (in-port:get-lnum ptbl)