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
01591d17
Commit
01591d17
authored
Apr 10, 1995
by
Richard M. Stallman
Browse files
(internal_condition_case): Abort if interrupt_input_blocked>0.
parent
a1b658dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
src/eval.c
src/eval.c
+5
-0
No files found.
src/eval.c
View file @
01591d17
...
...
@@ -1086,6 +1086,11 @@ internal_condition_case (bfun, handlers, hfun)
struct
catchtag
c
;
struct
handler
h
;
/* Since Fsignal resets this to 0, it had better be 0 now
or else we have a potential bug. */
if
(
interrupt_input_blocked
!=
0
)
abort
();
c
.
tag
=
Qnil
;
c
.
val
=
Qnil
;
c
.
backlist
=
backtrace_list
;
...
...
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