diff options
-rw-r--r-- | frontend/scanner.icl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/frontend/scanner.icl b/frontend/scanner.icl index 29ea072..c2a0282 100644 --- a/frontend/scanner.icl +++ b/frontend/scanner.icl @@ -1038,6 +1038,7 @@ ScanEndOfChar n chars input # (eof, c, input) = ReadChar input | eof = (ErrorToken "End of file inside char denotation", input) | '\'' == c = (CharToken (revCharListToString (n + 1) [c:chars]), input) + | '\\' == c = ScanBSChar n chars input ScanCharList = ScanCharList (n+1) [c:chars] input // = (ErrorToken ScanErrCharErr, input) |