Skip to content

Instantly share code, notes, and snippets.

@febeling
Last active August 29, 2015 13:57
Show Gist options
  • Save febeling/9809462 to your computer and use it in GitHub Desktop.
Save febeling/9809462 to your computer and use it in GitHub Desktop.

Elisp debugger cheat sheet

ccontinue
dstep-in
bflag frame for debugging when leaving frame again
uunflag frame for debugging when leaving
jflag frame and disable function-entry breakpoints
eeval expression in minibuffer
qquit
reval expression and set it as value of frame, continue
Ras r, but save to Debugger-record too
llist functions with breakpoints

Debugger can’t step through primitive functions, i.w. ones written in C.

Compiled functions can’t be stepped through, either. To replace function with an interpreted version visit the source and hit C-M-x.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment