1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-20 10:23:57 +00:00

(internal_condition_case): Comment out abort if

interrupt_input_blocked is not zero.
This commit is contained in:
Andrew Innes 2000-07-05 15:40:14 +00:00
parent d0acce1e29
commit dccfb97995

View 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;