diff options
| author | hallgren <hallgren@chalmers.se> | 2013-06-02 10:10:46 +0000 |
|---|---|---|
| committer | hallgren <hallgren@chalmers.se> | 2013-06-02 10:10:46 +0000 |
| commit | 5b36461c1db595af0340a1c547252b56bae7db13 (patch) | |
| tree | 186de0cc883d2bfca0e04ee639aa4ac642d0eb6c /src/compiler/GF/Text | |
| parent | f33059ae39a1fd90f62f953c910d4c2a00589c51 (diff) | |
GF.Text.Transliterations: avoid error prone function Data.Map.fromAscList
Diffstat (limited to 'src/compiler/GF/Text')
| -rw-r--r-- | src/compiler/GF/Text/Transliterations.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/GF/Text/Transliterations.hs b/src/compiler/GF/Text/Transliterations.hs index bd054c25f..c78d2c104 100644 --- a/src/compiler/GF/Text/Transliterations.hs +++ b/src/compiler/GF/Text/Transliterations.hs @@ -35,7 +35,7 @@ transliterateWithFile name src isFrom = transliteration :: String -> Maybe Transliteration transliteration s = Map.lookup s allTransliterations -allTransliterations = Map.fromAscList [ +allTransliterations = Map.fromList [ ("amharic",transAmharic), ("ancientgreek", transAncientGreek), ("arabic", transArabic), |
