summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorhallgren <hallgren@chalmers.se>2013-06-02 10:10:46 +0000
committerhallgren <hallgren@chalmers.se>2013-06-02 10:10:46 +0000
commit5b36461c1db595af0340a1c547252b56bae7db13 (patch)
tree186de0cc883d2bfca0e04ee639aa4ac642d0eb6c /src/compiler
parentf33059ae39a1fd90f62f953c910d4c2a00589c51 (diff)
GF.Text.Transliterations: avoid error prone function Data.Map.fromAscList
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/GF/Text/Transliterations.hs2
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),