diff options
author | Ian Lynagh <igloo@earth.li> | 2012-05-19 12:27:26 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-05-19 12:55:22 +0100 |
commit | 0f4925b6dfa40010bbf19e2824224b5a568d4f57 (patch) | |
tree | 55e68351d8e670d8ab37a6e2af4786f90bbf7c85 /ghc/InteractiveUI.hs | |
parent | 293475bc48bdb41c2629d752b2cbe2bd49b71571 (diff) | |
download | haskell-0f4925b6dfa40010bbf19e2824224b5a568d4f57.tar.gz |
Use transformers directly, rather than using mtl
This means we no longer need mtl in a GHC tree.
Diffstat (limited to 'ghc/InteractiveUI.hs')
-rw-r--r-- | ghc/InteractiveUI.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ghc/InteractiveUI.hs b/ghc/InteractiveUI.hs index efafd25d23..0688f2b6b7 100644 --- a/ghc/InteractiveUI.hs +++ b/ghc/InteractiveUI.hs @@ -58,7 +58,8 @@ import System.Console.Haskeline as Haskeline import Control.Applicative hiding (empty) import Control.Monad as Monad -import Control.Monad.Trans +import Control.Monad.Trans.Class +import Control.Monad.IO.Class import Data.Array import qualified Data.ByteString.Char8 as BS |