summaryrefslogtreecommitdiff
path: root/src/GF/Data/Parsers.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/GF/Data/Parsers.hs')
-rw-r--r--src/GF/Data/Parsers.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GF/Data/Parsers.hs b/src/GF/Data/Parsers.hs
index 7333510f8..d9920c3d2 100644
--- a/src/GF/Data/Parsers.hs
+++ b/src/GF/Data/Parsers.hs
@@ -170,7 +170,7 @@ pIdent = pLetter ... longestOfMany pAlphaPlusChar *** uncurry (:)
pLetter, pDigit :: Parser Char Char
pLetter = satisfy (`elem` (['A'..'Z'] ++ ['a'..'z'] ++
- ['À' .. 'Û'] ++ ['à' .. 'û'])) -- no such in Char
+ ['\192' .. '\255'])) -- no such in Char
pDigit = satisfy isDigit
pLetters :: Parser Char String