From dccfb97995fafa0d4e9d51a0d4aa7d4c76bf72e5 Mon Sep 17 00:00:00 2001 From: Andrew Innes Date: Wed, 5 Jul 2000 15:40:14 +0000 Subject: [PATCH] (internal_condition_case): Comment out abort if interrupt_input_blocked is not zero. --- src/eval.c | 4 ++++ 1 file changed, 4 insertions(+) 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; -- 2.39.2