From b95f2b3804688b0a8af7ac4c2804da3385b41249 Mon Sep 17 00:00:00 2001 From: pieter Date: Wed, 22 Dec 1999 09:48:10 +0000 Subject: \" as escape char git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@70 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d --- frontend/scanner.icl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontend') 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) -- cgit v1.2.3