emacs debugger: how can I step-out, step-over ?

Posted by Cheeso on Stack Overflow See other posts from Stack Overflow or by Cheeso
Published on 2010-04-04T18:40:54Z Indexed on 2010/04/04 18:43 UTC
Read the original article Hit count: 128

Filed under:
|
|
|

I don't know why I'm having so much trouble groking the documentation for the elisp debugger.

I see it has a commands to "step-into" (d). But for the life of me, I cannot see a step-out or step-over.

Can anyone help?

If I have this in the Backtrace buffer:

Debugger entered--returning value: 5047
  line-beginning-position()
* c-parse-state()
* byte-code("...")
* c-guess-basic-syntax()
  c-show-syntactic-information(nil)
  call-interactively(c-show-syntactic-information)

...where do I put the cursor, and what key do I type, to step out of the parse-state() fn ? by that I mean, run until that fn returns, and then stop in the debugger again.

© Stack Overflow or respective owner

Related posts about emacs

Related posts about debugging