Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
57a6e758
Commit
57a6e758
authored
Oct 14, 1996
by
Richard M. Stallman
Browse files
(Vdebug_on_signal): Renamed from Vdebug_force.
parent
2d2972d8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
src/eval.c
src/eval.c
+5
-5
No files found.
src/eval.c
View file @
57a6e758
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment