From: Simon Marlow Date: Fri, 18 May 2007 14:56:35 +0000 (+0000) Subject: 'import M' is now the same as ':module +M' at the prompt X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=347780ec5f2a3c77e58ab7c6cd06b7557f44a82c 'import M' is now the same as ':module +M' at the prompt Seemed like a reasonable thing to do, and only 1 line --- diff --git a/compiler/ghci/InteractiveUI.hs b/compiler/ghci/InteractiveUI.hs index 486d403..3bda8bd 100644 --- a/compiler/ghci/InteractiveUI.hs +++ b/compiler/ghci/InteractiveUI.hs @@ -555,6 +555,7 @@ runCommandEval c = ghciHandle handleEval (doCommand c) runStmt :: String -> SingleStep -> GHCi Bool runStmt stmt step | null (filter (not.isSpace) stmt) = return False + | ["import", mod] <- words stmt = keepGoing setContext ('+':mod) | otherwise = do st <- getGHCiState session <- getSession