From 2f967bd64b5c080c55ad3f915be5d89f6640152f Mon Sep 17 00:00:00 2001 From: simonmar Date: Fri, 8 Apr 2005 13:40:55 +0000 Subject: [PATCH] [project @ 2005-04-08 13:40:55 by simonmar] Refine the imports a bit --- ghc/compiler/ghci/InteractiveUI.hs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ghc/compiler/ghci/InteractiveUI.hs b/ghc/compiler/ghci/InteractiveUI.hs index 601d3e5..275a2c1 100644 --- a/ghc/compiler/ghci/InteractiveUI.hs +++ b/ghc/compiler/ghci/InteractiveUI.hs @@ -17,7 +17,8 @@ module InteractiveUI ( import qualified GHC import GHC ( Session, verbosity, dopt, DynFlag(..), mkModule, pprModule, Type, Module, SuccessFlag(..), - TyThing(..), Name, LoadHowMuch(..) ) + TyThing(..), Name, LoadHowMuch(..), + GhcException(..), showGhcException ) import Outputable -- following all needed for :info... ToDo: remove @@ -31,7 +32,7 @@ import OccName ( OccName, parenSymOcc, occNameUserString ) import BasicTypes ( StrictnessMark(..), defaultFixity ) -- Other random utilities -import Panic hiding ( showException ) +import Panic ( panic, installSignalHandlers ) import Config import StaticFlags ( opt_IgnoreDotGhci ) import Linker ( showLinkerState ) -- 1.7.10.4