summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorLute Kamstra <lute@gnu.org>2005-03-04 14:48:14 +0000
committerLute Kamstra <lute@gnu.org>2005-03-04 14:48:14 +0000
commit15cf150db787216573e8be45195fa87c40dae3ec (patch)
tree1d3157341e92d0160b45fe2df470714dc6c424cf /lisp/emacs-lisp
parentb12e59fd62409f8776cd660813c7053a78250b39 (diff)
downloademacs-15cf150db787216573e8be45195fa87c40dae3ec.tar.gz
emacs-15cf150db787216573e8be45195fa87c40dae3ec.tar.bz2
emacs-15cf150db787216573e8be45195fa87c40dae3ec.zip
(debugger-step-after-exit): Make it a defvar.
(debug-function-list): Ditto.
Diffstat (limited to 'lisp/emacs-lisp')
-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 0692b7995ea..ab197e8e119 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.")