]> git.eshelyaron.com Git - emacs.git/commitdiff
(internal_condition_case): Comment out abort if
authorAndrew Innes <andrewi@gnu.org>
Wed, 5 Jul 2000 15:40:14 +0000 (15:40 +0000)
committerAndrew Innes <andrewi@gnu.org>
Wed, 5 Jul 2000 15:40:14 +0000 (15:40 +0000)
interrupt_input_blocked is not zero.

src/eval.c

index 99baf8b9ab6bd329baacfcffd1cb1f9cd457f221..487b2d8e5b8b8b66ed8c645dac3e5234aaffccca 100644 (file)
@@ -1172,10 +1172,14 @@ internal_condition_case (bfun, handlers, hfun)
   struct catchtag c;
   struct handler h;
 
+#if 0 /* Can't do this check anymore because realize_basic_faces has
+        to BLOCK_INPUT, and can call Lisp.  What's really needed is a
+        flag indicating that we're currently handling a signal.  */
   /* 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 ();
+#endif
 
   c.tag = Qnil;
   c.val = Qnil;