diff options
author | Pepe Iborra <mnislaih@gmail.com> | 2007-01-11 13:14:31 +0000 |
---|---|---|
committer | Pepe Iborra <mnislaih@gmail.com> | 2007-01-11 13:14:31 +0000 |
commit | cdfbaf4f6d2bafdd7e661eb44c3a4c99cae603a0 (patch) | |
tree | 69b35dcd82ca74da90e591b72910b0905ada8410 | |
parent | 025733b8367d9108e8992b2db3dbb9f80cad4fa9 (diff) | |
download | haskell-cdfbaf4f6d2bafdd7e661eb44c3a4c99cae603a0.tar.gz |
Comments only
-rw-r--r-- | compiler/ghci/InteractiveUI.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ghci/InteractiveUI.hs b/compiler/ghci/InteractiveUI.hs index d2ed97662d..a295245a8b 100644 --- a/compiler/ghci/InteractiveUI.hs +++ b/compiler/ghci/InteractiveUI.hs @@ -152,7 +152,7 @@ builtin_commands = [ keepGoing :: (String -> GHCi ()) -> (String -> GHCi Bool) keepGoing a str = a str >> return False --- tlC: Top Level Command +-- tlC: Top Level Command, not allowed in inferior sessions tlC :: (String -> GHCi Bool) -> (String -> GHCi Bool) tlC a str = do top_level <- isTopLevel |