summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-10-14 23:39:54 +0000
committerRichard M. Stallman <rms@gnu.org>1996-10-14 23:39:54 +0000
commit09c3f25712e395993473551fb80f01bda93f0ae8 (patch)
treea02873d40308ffc5a15d34cda6e6c3c120fee5da
parent144a9c3f89cd80328ce283cc9858f2b423b5a935 (diff)
downloademacs-09c3f25712e395993473551fb80f01bda93f0ae8.tar.gz
(Vdebug_on_signal): Renamed from Vdebug_force.
-rw-r--r--src/eval.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/eval.c b/src/eval.c
index 2772d197e55..069608b906b 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -136,7 +136,7 @@ Lisp_Object Vdebug_on_error;
Lisp_Object Vdebug_ignored_errors;
/* Non-nil means call the debugger even if the error will be handled. */
-Lisp_Object Vdebug_force;
+Lisp_Object Vdebug_on_signal;
/* Hook for edebug to use. */
Lisp_Object Vsignal_hook_function;
@@ -1348,8 +1348,8 @@ find_handler_clause (handlers, conditions, sig, data, debugger_value_ptr)
/* error is used similarly, but means print an error message
and run the debugger if that is enabled. */
if (EQ (handlers, Qerror)
- || !NILP (Vdebug_force)) /* This says call debugger even if
- there is a handler. */
+ || !NILP (Vdebug_on_signal)) /* This says call debugger even if
+ there is a handler. */
{
int count = specpdl_ptr - specpdl;
int debugger_called = 0;
@@ -2957,11 +2957,11 @@ The Edebug package uses this to regain control.");
"While in a mocklisp function, the list of its unevaluated args.");
Vmocklisp_arguments = Qt;
- DEFVAR_LISP ("debug-force", &Vdebug_force,
+ DEFVAR_LISP ("debug-on-signal", &Vdebug_on_signal,
"*Non-nil means call the debugger regardless of condition handlers.\n\
Note that `debug-on-error', `debug-on-quit' and friends\n\
still determine whether to handle the particular condition.");
- Vdebug_force = Qnil;
+ Vdebug_on_signal = Qnil;
Vrun_hooks = intern ("run-hooks");
staticpro (&Vrun_hooks);