aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2019-09-25 11:09:09 +0300
committerEli Zaretskii2019-09-25 11:09:09 +0300
commit213bcaf1bf365d0d40639754b8123f9d770b08e8 (patch)
tree8ea3184ddb80876a03f8160b6febd1d2f341098c
parent13f244af4044bf250307889bd6cd974ee665d01a (diff)
downloademacs-213bcaf1bf365d0d40639754b8123f9d770b08e8.tar.gz
emacs-213bcaf1bf365d0d40639754b8123f9d770b08e8.zip
; * lisp/emacs-lisp/debug.el (debugger-mode): Doc fix. (Bug#37352)
-rw-r--r--lisp/emacs-lisp/debug.el15
1 files changed, 9 insertions, 6 deletions
diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el
index 21499f75790..f711971c181 100644
--- a/lisp/emacs-lisp/debug.el
+++ b/lisp/emacs-lisp/debug.el
@@ -588,12 +588,15 @@ The environment used is the one when entering the activation frame at point."
588(define-derived-mode debugger-mode backtrace-mode "Debugger" 588(define-derived-mode debugger-mode backtrace-mode "Debugger"
589 "Mode for debugging Emacs Lisp using a backtrace. 589 "Mode for debugging Emacs Lisp using a backtrace.
590\\<debugger-mode-map> 590\\<debugger-mode-map>
591A line starts with `*' if exiting that frame will call the debugger. 591A frame marked with `*' in the backtrace means that exiting that
592Type \\[debugger-frame] or \\[debugger-frame-clear] to set or remove the `*'. 592frame will enter the debugger. You can flag frames to enter the
593 593debugger when frame is exited with \\[debugger-frame], and remove
594When in debugger due to frame being exited, 594the flag with \\[debugger-frame-clear].
595use the \\[debugger-return-value] command to override the value 595
596being returned from that frame. 596When in debugger invoked due to exiting a frame which was flagged
597with a `*', you can use the \\[debugger-return-value] command to
598override the value being returned from that frame when the debugger
599exits.
597 600
598Use \\[debug-on-entry] and \\[cancel-debug-on-entry] to control 601Use \\[debug-on-entry] and \\[cancel-debug-on-entry] to control
599which functions will enter the debugger when called. 602which functions will enter the debugger when called.