diff options
| author | bringert <unknown> | 2004-12-07 13:02:27 +0000 |
|---|---|---|
| committer | bringert <unknown> | 2004-12-07 13:02:27 +0000 |
| commit | d42984a08f8ea44123c84f267e060a7e97a003f0 (patch) | |
| tree | 781cb5744d48579cee3af5599f3d4c0083ce6c6b /src/GF/Source/LexGF.hs | |
| parent | eaa2dcde072b91a03b0cb4f17568900d39678c25 (diff) | |
Do string sharing after unescaping in source and canonical grammars.
Diffstat (limited to 'src/GF/Source/LexGF.hs')
| -rw-r--r-- | src/GF/Source/LexGF.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GF/Source/LexGF.hs b/src/GF/Source/LexGF.hs index dc6af5e33..4453650bc 100644 --- a/src/GF/Source/LexGF.hs +++ b/src/GF/Source/LexGF.hs @@ -133,7 +133,7 @@ alexInputPrevChar (p, c, s) = c alex_action_3 = tok (\p s -> PT p (TS $ shareString s)) alex_action_4 = tok (\p s -> PT p (eitherResIdent (T_LString . shareString) s)) alex_action_5 = tok (\p s -> PT p (eitherResIdent (TV . shareString) s)) -alex_action_6 = tok (\p s -> PT p (TL $ unescapeInitTail $ shareString s)) +alex_action_6 = tok (\p s -> PT p (TL $ shareString $ unescapeInitTail s)) alex_action_7 = tok (\p s -> PT p (TI s)) {-# LINE 1 "GenericTemplate.hs" #-} {-# LINE 1 "<built-in>" #-} |
