From 347780ec5f2a3c77e58ab7c6cd06b7557f44a82c Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Fri, 18 May 2007 14:56:35 +0000 Subject: [PATCH] 'import M' is now the same as ':module +M' at the prompt Seemed like a reasonable thing to do, and only 1 line --- compiler/ghci/InteractiveUI.hs | 1 + 1 file changed, 1 insertion(+) 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 -- 1.7.10.4