diff options
Diffstat (limited to 'src/GF')
| -rw-r--r-- | src/GF/Text/Transliterations.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GF/Text/Transliterations.hs b/src/GF/Text/Transliterations.hs index 57237a1cf..19adf68fa 100644 --- a/src/GF/Text/Transliterations.hs +++ b/src/GF/Text/Transliterations.hs @@ -32,7 +32,7 @@ transliteration s = case s of characterTable :: Transliteration -> String characterTable = unlines . map prOne . Map.assocs . trans_from_unicode where - prOne (i,s) = unwords ["|", show i, "|", encodeUTF8 [toEnum i], "|", s, "|"] + prOne (i,s) = unwords ["|", show i, "|", [toEnum i], "|", s, "|"] data Transliteration = Trans { trans_to_unicode :: Map.Map String Int, |
