summaryrefslogtreecommitdiff
path: root/src/GF/Canon/LexGFC.x
diff options
context:
space:
mode:
authorbringert <unknown>2004-12-07 13:02:27 +0000
committerbringert <unknown>2004-12-07 13:02:27 +0000
commitd42984a08f8ea44123c84f267e060a7e97a003f0 (patch)
tree781cb5744d48579cee3af5599f3d4c0083ce6c6b /src/GF/Canon/LexGFC.x
parenteaa2dcde072b91a03b0cb4f17568900d39678c25 (diff)
Do string sharing after unescaping in source and canonical grammars.
Diffstat (limited to 'src/GF/Canon/LexGFC.x')
-rw-r--r--src/GF/Canon/LexGFC.x2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GF/Canon/LexGFC.x b/src/GF/Canon/LexGFC.x
index 2f7b2180c..b3332a48b 100644
--- a/src/GF/Canon/LexGFC.x
+++ b/src/GF/Canon/LexGFC.x
@@ -24,7 +24,7 @@ $white+ ;
@rsyms { tok (\p s -> PT p (TS $ shareString s)) }
$l $i* { tok (\p s -> PT p (eitherResIdent (TV . shareString) s)) } -- H
-\" ([$u # [\" \\ \n]] | (\\ (\" | \\ | \' | n | t)))* \"{ tok (\p s -> PT p (TL $ unescapeInitTail $ shareString s)) } -- H
+\" ([$u # [\" \\ \n]] | (\\ (\" | \\ | \' | n | t)))* \"{ tok (\p s -> PT p (TL $ shareString $ unescapeInitTail s)) } -- H
$d+ { tok (\p s -> PT p (TI s)) }