summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-02-13 17:55:17 +0000
committerRichard M. Stallman <rms@gnu.org>1995-02-13 17:55:17 +0000
commit2eeeb0d2a0900023029fe5602f30b62694481268 (patch)
tree9d7c692cd841ba869329cfbc2be22acbbd7e0dda /lisp/emacs-lisp
parent7fce8c916f2482523c3aa6a74b86ce5ad8b808eb (diff)
downloademacs-2eeeb0d2a0900023029fe5602f30b62694481268.tar.gz
emacs-2eeeb0d2a0900023029fe5602f30b62694481268.tar.bz2
emacs-2eeeb0d2a0900023029fe5602f30b62694481268.zip
(debugger-step-after-exit): Variable declared.
(debugger-old-buffer, debugger-value): Variables declared.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/debug.el9
1 files changed, 9 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el
index 462f551142d..2adb499246c 100644
--- a/lisp/emacs-lisp/debug.el
+++ b/lisp/emacs-lisp/debug.el
@@ -30,6 +30,15 @@
(defvar debug-function-list nil
"List of functions currently set for debug on entry.")
+(defvar debugger-step-after-exit nil
+ "Non-nil means \"single-step\" after the debugger exits.")
+
+(defvar debugger-value nil
+ "This is the value for the debugger to return, when it returns.")
+
+(defvar debugger-old-buffer nil
+ "This is the buffer that was current when the debugger was entered.")
+
(defvar debugger-outer-match-data)
(defvar debugger-outer-track-mouse)
(defvar debugger-outer-last-command)