(debugger-step-after-exit): Make it a defvar.

(debug-function-list): Ditto.
This commit is contained in:
Lute Kamstra 2005-03-04 14:48:14 +00:00
parent b12e59fd62
commit 15cf150db7

View file

@ -51,15 +51,11 @@ the middle is discarded, and just the beginning and end are displayed."
:group 'debugger
:version "21.1")
(defcustom debug-function-list nil
"List of functions currently set for debug on entry."
:type '(repeat function)
:group 'debugger)
(defvar debug-function-list nil
"List of functions currently set for debug on entry.")
(defcustom debugger-step-after-exit nil
"Non-nil means \"single-step\" after the debugger exits."
:type 'boolean
:group 'debugger)
(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.")