]> git.eshelyaron.com Git - emacs.git/commitdiff
(debugger-step-after-exit): Make it a defvar.
authorLute Kamstra <lute@gnu.org>
Fri, 4 Mar 2005 14:48:14 +0000 (14:48 +0000)
committerLute Kamstra <lute@gnu.org>
Fri, 4 Mar 2005 14:48:14 +0000 (14:48 +0000)
(debug-function-list): Ditto.

lisp/emacs-lisp/debug.el

index 0692b7995eab7faa1ba543b5c8fb776f44c69dd4..ab197e8e119df8cc2ae695b4951038b326660b09 100644 (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)
-
-(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.")