summaryrefslogtreecommitdiff
path: root/libraries/base/Prelude.hs
diff options
context:
space:
mode:
authorsimonpj@microsoft.com <unknown>2009-07-06 11:18:42 +0000
committersimonpj@microsoft.com <unknown>2009-07-06 11:18:42 +0000
commitc84bffd8689387d3c64219c97dcbc5c6569e9ffd (patch)
treef4145f5211b4167d51b02a11fd32c3a01e7bd1c3 /libraries/base/Prelude.hs
parentdbb6d842e8fdfac84cd32876feeb7335594a9dcd (diff)
downloadhaskell-c84bffd8689387d3c64219c97dcbc5c6569e9ffd.tar.gz
Remove unused imports from base
These unused imports are detected by the new unused-import code
Diffstat (limited to 'libraries/base/Prelude.hs')
-rw-r--r--libraries/base/Prelude.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/base/Prelude.hs b/libraries/base/Prelude.hs
index bb83068e30..1006bdcf11 100644
--- a/libraries/base/Prelude.hs
+++ b/libraries/base/Prelude.hs
@@ -155,15 +155,15 @@ import Data.Tuple
#ifdef __GLASGOW_HASKELL__
import GHC.Base
-import GHC.IO
-import GHC.IO.Exception
+-- import GHC.IO
+-- import GHC.IO.Exception
import Text.Read
import GHC.Enum
import GHC.Num
import GHC.Real
import GHC.Float
import GHC.Show
-import GHC.Err ( error, undefined )
+import GHC.Err ( undefined )
#endif
#ifdef __HUGS__