diff options
Diffstat (limited to 'src/GF/Source/PrintGF.hs')
| -rw-r--r-- | src/GF/Source/PrintGF.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GF/Source/PrintGF.hs b/src/GF/Source/PrintGF.hs index b06e09a1b..732cdb002 100644 --- a/src/GF/Source/PrintGF.hs +++ b/src/GF/Source/PrintGF.hs @@ -61,7 +61,7 @@ instance Print Char where prtList s = ["\"" ++ concatMap mkEsc s ++ "\""] mkEsc s = case s of - _ | elem s "\\\"'" -> '\\':[s] + _ | elem s "\\\"" -> '\\':[s] '\n' -> "\\n" '\t' -> "\\t" _ -> [s] |
