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
be857679
Commit
be857679
authored
May 19, 1997
by
Richard M. Stallman
Browse files
(num_nonmacro_input_events):
Renamed from num_nonmacro_input_chars.
parent
4b657f72
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 @
be857679
...
...
@@ -145,9 +145,9 @@ Lisp_Object Vsignal_hook_function;
is handled by the command loop's error handler. */
int
debug_on_quit
;
/* The value of num_nonmacro_input_
char
s as of the last time we
/* The value of num_nonmacro_input_
event
s as of the last time we
started to enter the debugger. If we decide to enter the debugger
again when this is still equal to num_nonmacro_input_
char
s, then we
again when this is still equal to num_nonmacro_input_
event
s, then we
know that the debugger itself has an error, and we should just
signal the error instead of entering an infinite loop of debugger
invocations. */
...
...
@@ -182,7 +182,7 @@ init_eval ()
Vquit_flag
=
Qnil
;
debug_on_next_call
=
0
;
lisp_eval_depth
=
0
;
/* This is less than the initial value of num_nonmacro_input_
char
s. */
/* This is less than the initial value of num_nonmacro_input_
event
s. */
when_entered_debugger
=
-
1
;
}
...
...
@@ -195,7 +195,7 @@ call_debugger (arg)
if
(
specpdl_size
+
40
>
max_specpdl_size
)
max_specpdl_size
=
specpdl_size
+
40
;
debug_on_next_call
=
0
;
when_entered_debugger
=
num_nonmacro_input_
char
s
;
when_entered_debugger
=
num_nonmacro_input_
event
s
;
return
apply1
(
Vdebugger
,
arg
);
}
...
...
@@ -1371,7 +1371,7 @@ find_handler_clause (handlers, conditions, sig, data, debugger_value_ptr)
?
debug_on_quit
:
wants_debugger
(
Vdebug_on_error
,
conditions
))
&&
!
skip_debugger
(
conditions
,
Fcons
(
sig
,
data
))
&&
when_entered_debugger
<
num_nonmacro_input_
char
s
)
&&
when_entered_debugger
<
num_nonmacro_input_
event
s
)
{
specbind
(
Qdebug_on_error
,
Qnil
);
*
debugger_value_ptr
...
...
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