diff options
author | Simon Marlow <simonmar@microsoft.com> | 2007-05-10 08:15:54 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2007-05-10 08:15:54 +0000 |
commit | 0a183bd0d5d9952699295fa9506de0df97392ef5 (patch) | |
tree | 3c763f716cd7c867d98ce88c88f53b361834fc37 | |
parent | 56acf24c6792ad5d6c0671b3ac534d685a4d37ca (diff) | |
download | haskell-0a183bd0d5d9952699295fa9506de0df97392ef5.tar.gz |
FIX BUILD: remove accidentally committed hunk
-rw-r--r-- | compiler/ghci/InteractiveUI.hs | 3 |
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) |