diff options
author | Pepe Iborra <mnislaih@gmail.com> | 2007-08-20 13:35:46 +0000 |
---|---|---|
committer | Pepe Iborra <mnislaih@gmail.com> | 2007-08-20 13:35:46 +0000 |
commit | 6e9b0b152e64ce2f9e05a054605624f36bf44617 (patch) | |
tree | bd87242ada91e4cd28433003147f970ed03daa32 | |
parent | cd29742326367b45b9f779088309c652fd42c779 (diff) | |
download | haskell-6e9b0b152e64ce2f9e05a054605624f36bf44617.tar.gz |
Make :stepover <expr> work like :step
-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 19cc8f1d51..5c5e9c1d4c 100644 --- a/compiler/ghci/InteractiveUI.hs +++ b/compiler/ghci/InteractiveUI.hs @@ -1562,7 +1562,7 @@ stepOverCmd [] = do then doContinue (`isSubspanOf` parent) GHC.SingleStep else doContinue (const True) GHC.SingleStep - where +stepOverCmd expression = stepCmd expression {- So, the only tricky part in stepOver is detecting that we have |