summaryrefslogtreecommitdiff
path: root/src/compiler/GF/Text/CP1252.hs
diff options
context:
space:
mode:
authorkrasimir <krasimir@chalmers.se>2010-04-19 09:38:36 +0000
committerkrasimir <krasimir@chalmers.se>2010-04-19 09:38:36 +0000
commit6313244eacf992fb10a5091bee28582e84540809 (patch)
tree8208fb18a5e1ab9447bd060cf08a3d78ed0a8c0a /src/compiler/GF/Text/CP1252.hs
parent8b5827fc892c2f395ae26f1811da2d4cc3b1669d (diff)
use the native unicode support from GHC 6.12
Diffstat (limited to 'src/compiler/GF/Text/CP1252.hs')
-rw-r--r--src/compiler/GF/Text/CP1252.hs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/compiler/GF/Text/CP1252.hs b/src/compiler/GF/Text/CP1252.hs
deleted file mode 100644
index a1d8ab8f3..000000000
--- a/src/compiler/GF/Text/CP1252.hs
+++ /dev/null
@@ -1,17 +0,0 @@
------------------------------------------------------------------------------
--- |
--- Module : GF.Text.CP1252
--- Maintainer : Krasimir Angelov
---
--- cp1252 is a character encoding of the Latin alphabet, used by default in
--- the legacy components of Microsoft Windows in English and some other
--- Western languages.
---
------------------------------------------------------------------------------
-
-module GF.Text.CP1252 where
-
-import Data.Char
-
-decodeCP1252 = map id
-encodeCP1252 = map (\x -> if x <= '\255' then x else '?')