aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLute Kamstra <[email protected]>2005-03-04 14:48:14 +0000
committerLute Kamstra <[email protected]>2005-03-04 14:48:14 +0000
commit15cf150db787216573e8be45195fa87c40dae3ec (patch)
tree1d3157341e92d0160b45fe2df470714dc6c424cf
parentb12e59fd62409f8776cd660813c7053a78250b39 (diff)
(debugger-step-after-exit): Make it a defvar.
(debug-function-list): Ditto.
-rw-r--r--lisp/emacs-lisp/debug.el14
1 files changed, 5 insertions, 9 deletions
diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el
index 0692b7995e..ab197e8e11 100644
--- a/lisp/emacs-lisp/debug.el
+++ b/lisp/emacs-lisp/debug.el
@@ -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)
-
-(defcustom debugger-step-after-exit nil
- "Non-nil means \"single-step\" after the debugger exits."
- :type 'boolean
- :group 'debugger)
+(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.")