From: Gerd Moellmann Date: Wed, 5 Jul 2000 12:36:14 +0000 (+0000) Subject: (Feval): Put check for interrupt_input_block in #if 0. X-Git-Tag: emacs-pretest-21.0.90~2978 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cadf6ba27cb7f85395009e47dabc28efe945d087;p=emacs.git (Feval): Put check for interrupt_input_block in #if 0. --- diff --git a/src/eval.c b/src/eval.c index d616addde43..99baf8b9ab6 100644 --- a/src/eval.c +++ b/src/eval.c @@ -1762,10 +1762,14 @@ DEFUN ("eval", Feval, Seval, 1, 1, 0, struct backtrace backtrace; struct gcpro gcpro1, gcpro2, gcpro3; +#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 if (SYMBOLP (form)) {