diff options
Diffstat (limited to 'frontend/scanner.icl')
-rw-r--r-- | frontend/scanner.icl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/scanner.icl b/frontend/scanner.icl index fb66486..8ee980c 100644 --- a/frontend/scanner.icl +++ b/frontend/scanner.icl @@ -814,7 +814,7 @@ where '\t' -> (['t','\\':chars], n + 2, input) '\v' -> (['v','\\':chars], n + 2, input) '\\' -> (['\\','\\':chars], n + 2, input) -// '"' -> (['"' ,'\\':chars], n + 2, input) + '"' -> (['"' ,'\\':chars], n + 2, input) '\'' -> (['\'','\\':chars], n + 2, input) c -> ([c:chars], n + 1, input) |