aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Innes2000-07-05 15:40:14 +0000
committerAndrew Innes2000-07-05 15:40:14 +0000
commitdccfb97995fafa0d4e9d51a0d4aa7d4c76bf72e5 (patch)
tree2e10a81e4225ad33926e123df79ea1f2716944ba /src
parentd0acce1e29485a348138d33a24584694e229ce20 (diff)
downloademacs-dccfb97995fafa0d4e9d51a0d4aa7d4c76bf72e5.tar.gz
emacs-dccfb97995fafa0d4e9d51a0d4aa7d4c76bf72e5.zip
(internal_condition_case): Comment out abort if
interrupt_input_blocked is not zero.
Diffstat (limited to 'src')
-rw-r--r--src/eval.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c
index 99baf8b9ab6..487b2d8e5b8 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1172,10 +1172,14 @@ internal_condition_case (bfun, handlers, hfun)
1172 struct catchtag c; 1172 struct catchtag c;
1173 struct handler h; 1173 struct handler h;
1174 1174
1175#if 0 /* Can't do this check anymore because realize_basic_faces has
1176 to BLOCK_INPUT, and can call Lisp. What's really needed is a
1177 flag indicating that we're currently handling a signal. */
1175 /* Since Fsignal resets this to 0, it had better be 0 now 1178 /* Since Fsignal resets this to 0, it had better be 0 now
1176 or else we have a potential bug. */ 1179 or else we have a potential bug. */
1177 if (interrupt_input_blocked != 0) 1180 if (interrupt_input_blocked != 0)
1178 abort (); 1181 abort ();
1182#endif
1179 1183
1180 c.tag = Qnil; 1184 c.tag = Qnil;
1181 c.val = Qnil; 1185 c.val = Qnil;