summaryrefslogtreecommitdiff
path: root/src/GF/Source/PrintGF.hs
diff options
context:
space:
mode:
authoraarne <unknown>2004-04-23 13:45:07 +0000
committeraarne <unknown>2004-04-23 13:45:07 +0000
commit233d6910e4716f078876541bfbd4ce6163ffd0c8 (patch)
treed81b2a452ab8d7f8081250f3d64448ee7e44b5cc /src/GF/Source/PrintGF.hs
parent2e0c510285ac1cabefea0ab68ffb1215d7297578 (diff)
ditt o datt
Diffstat (limited to 'src/GF/Source/PrintGF.hs')
-rw-r--r--src/GF/Source/PrintGF.hs2
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]