From: Andrew Innes Date: Wed, 5 Jul 2000 15:40:14 +0000 (+0000) Subject: (internal_condition_case): Comment out abort if X-Git-Tag: emacs-pretest-21.0.90~2967 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dccfb97995fafa0d4e9d51a0d4aa7d4c76bf72e5;p=emacs.git (internal_condition_case): Comment out abort if interrupt_input_blocked is not zero. --- 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) 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;