summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/GF/Infra/Option.hs10
-rw-r--r--src/compiler/GF/Text/Coding.hs10
2 files changed, 1 insertions, 19 deletions
diff --git a/src/compiler/GF/Infra/Option.hs b/src/compiler/GF/Infra/Option.hs
index 80606c0a9..88767c72e 100644
--- a/src/compiler/GF/Infra/Option.hs
+++ b/src/compiler/GF/Infra/Option.hs
@@ -1,4 +1,3 @@
--- LANGUAGE CPP
module GF.Infra.Option
(
-- * Option types
@@ -285,14 +284,7 @@ defaultFlags = Flags {
optTagsOnly = False,
optHeuristicFactor = Nothing,
optMetaProb = Nothing,
- optMetaToknProb = Nothing{-,
- optNewComp =
-#ifdef NEW_COMP
- True
-#else
- False
-#endif
--}
+ optMetaToknProb = Nothing
}
-- | Option descriptions
diff --git a/src/compiler/GF/Text/Coding.hs b/src/compiler/GF/Text/Coding.hs
index 3669733d0..bac7938c0 100644
--- a/src/compiler/GF/Text/Coding.hs
+++ b/src/compiler/GF/Text/Coding.hs
@@ -1,5 +1,3 @@
-{-# LANGUAGE CPP #-}
-
module GF.Text.Coding where
import qualified Data.ByteString as BS
@@ -25,11 +23,7 @@ encodeUnicode enc s =
where
translate cod cbuf
| i < w = do bbuf <- newByteBuffer 128 WriteBuffer
-#if __GLASGOW_HASKELL__ >= 702
(_,cbuf,bbuf) <- cod cbuf bbuf
-#else
- (cbuf,bbuf) <- cod cbuf bbuf
-#endif
if isEmptyBuffer bbuf
then ioe_invalidCharacter1
else do let bs = PS (bufRaw bbuf) (bufL bbuf) (bufR bbuf-bufL bbuf)
@@ -54,11 +48,7 @@ decodeUnicodeIO enc (PS fptr l len) = do
where
translate cod bbuf cbuf
| i < w = do
-#if __GLASGOW_HASKELL__ >= 702
(_,bbuf,cbuf) <- cod bbuf cbuf
-#else
- (bbuf,cbuf) <- cod bbuf cbuf
-#endif
if isEmptyBuffer cbuf
then ioe_invalidCharacter2
else unpack cod bbuf cbuf