summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Marlow <simonmar@microsoft.com>2007-05-10 08:15:54 +0000
committerSimon Marlow <simonmar@microsoft.com>2007-05-10 08:15:54 +0000
commit0a183bd0d5d9952699295fa9506de0df97392ef5 (patch)
tree3c763f716cd7c867d98ce88c88f53b361834fc37
parent56acf24c6792ad5d6c0671b3ac534d685a4d37ca (diff)
downloadhaskell-0a183bd0d5d9952699295fa9506de0df97392ef5.tar.gz
FIX BUILD: remove accidentally committed hunk
-rw-r--r--compiler/ghci/InteractiveUI.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/ghci/InteractiveUI.hs b/compiler/ghci/InteractiveUI.hs
index 33030bcfea..1ac2df8bcb 100644
--- a/compiler/ghci/InteractiveUI.hs
+++ b/compiler/ghci/InteractiveUI.hs
@@ -136,8 +136,7 @@ builtin_commands = [
("type", keepGoing typeOfExpr, False, completeIdentifier),
("trace", keepGoing traceCmd, False, completeIdentifier),
("undef", keepGoing undefineMacro, False, completeMacro),
- ("unset", keepGoing unsetOptions, True, completeSetOptions),
- ("where", keepGoing whereCmd, True, completeNone)
+ ("unset", keepGoing unsetOptions, True, completeSetOptions)
]
keepGoing :: (String -> GHCi ()) -> (String -> GHCi Bool)