summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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 ab069adbd..2774246bf 100644
--- a/src/GF/Source/PrintGF.hs
+++ b/src/GF/Source/PrintGF.hs
@@ -71,7 +71,7 @@ instance Print Char where
mkEsc :: Char -> ShowS
mkEsc s = case s of
- _ | elem s "\\\"'" -> showChar '\\' . showChar s
+ _ | elem s "\\\"" -> showChar '\\' . showChar s -- H (don't escape ')
'\n' -> showString "\\n"
'\t' -> showString "\\t"
_ -> showChar s