diff options
author | Ian Lynagh <igloo@earth.li> | 2008-06-16 14:52:07 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-06-16 14:52:07 +0000 |
commit | 6b023958134ca88b7e0b41428c17e9f85c88f076 (patch) | |
tree | 57584632b58fbce47197ebfbbe37a6e40d2d5dbe /libraries/base/Text | |
parent | 6e0d1f0993a0cb79d02de16f00e9db1f49cf4f91 (diff) | |
download | haskell-6b023958134ca88b7e0b41428c17e9f85c88f076.tar.gz |
Avoid using deprecated flags
Diffstat (limited to 'libraries/base/Text')
-rw-r--r-- | libraries/base/Text/ParserCombinators/ReadP.hs | 2 | ||||
-rw-r--r-- | libraries/base/Text/ParserCombinators/ReadPrec.hs | 2 | ||||
-rw-r--r-- | libraries/base/Text/Read.hs | 2 | ||||
-rw-r--r-- | libraries/base/Text/Read/Lex.hs | 2 | ||||
-rw-r--r-- | libraries/base/Text/Show.hs | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/libraries/base/Text/ParserCombinators/ReadP.hs b/libraries/base/Text/ParserCombinators/ReadP.hs index d0743e7dbc..b2414f7e18 100644 --- a/libraries/base/Text/ParserCombinators/ReadP.hs +++ b/libraries/base/Text/ParserCombinators/ReadP.hs @@ -1,4 +1,4 @@ -{-# OPTIONS_GHC -fglasgow-exts -fno-implicit-prelude #-} +{-# OPTIONS_GHC -fglasgow-exts -XNoImplicitPrelude #-} ----------------------------------------------------------------------------- -- | -- Module : Text.ParserCombinators.ReadP diff --git a/libraries/base/Text/ParserCombinators/ReadPrec.hs b/libraries/base/Text/ParserCombinators/ReadPrec.hs index 26e3b76734..88b5678be2 100644 --- a/libraries/base/Text/ParserCombinators/ReadPrec.hs +++ b/libraries/base/Text/ParserCombinators/ReadPrec.hs @@ -1,4 +1,4 @@ -{-# OPTIONS_GHC -fno-implicit-prelude #-} +{-# OPTIONS_GHC -XNoImplicitPrelude #-} ----------------------------------------------------------------------------- -- | -- Module : Text.ParserCombinators.ReadPrec diff --git a/libraries/base/Text/Read.hs b/libraries/base/Text/Read.hs index 5009efbfb8..172a4c2ce3 100644 --- a/libraries/base/Text/Read.hs +++ b/libraries/base/Text/Read.hs @@ -1,4 +1,4 @@ -{-# OPTIONS_GHC -fno-implicit-prelude #-} +{-# OPTIONS_GHC -XNoImplicitPrelude #-} ----------------------------------------------------------------------------- -- | -- Module : Text.Read diff --git a/libraries/base/Text/Read/Lex.hs b/libraries/base/Text/Read/Lex.hs index cbfaaf8d95..a2acf471a3 100644 --- a/libraries/base/Text/Read/Lex.hs +++ b/libraries/base/Text/Read/Lex.hs @@ -1,4 +1,4 @@ -{-# OPTIONS_GHC -fno-implicit-prelude #-} +{-# OPTIONS_GHC -XNoImplicitPrelude #-} ----------------------------------------------------------------------------- -- | -- Module : Text.Read.Lex diff --git a/libraries/base/Text/Show.hs b/libraries/base/Text/Show.hs index 5ae6288b6a..d540a1d077 100644 --- a/libraries/base/Text/Show.hs +++ b/libraries/base/Text/Show.hs @@ -1,4 +1,4 @@ -{-# OPTIONS_GHC -fno-implicit-prelude #-} +{-# OPTIONS_GHC -XNoImplicitPrelude #-} ----------------------------------------------------------------------------- -- | -- Module : Text.Show |