Mercurial > emacs
changeset 30058:cbdbc61ee760
(internal_condition_case): Comment out abort if
interrupt_input_blocked is not zero.
author | Andrew Innes <andrewi@gnu.org> |
---|---|
date | Wed, 05 Jul 2000 15:40:14 +0000 |
parents | 6413c7b9a6c3 |
children | 6a413a3c9c25 |
files | src/eval.c |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/eval.c Wed Jul 05 15:40:03 2000 +0000 +++ b/src/eval.c Wed Jul 05 15:40:14 2000 +0000 @@ -1172,10 +1172,14 @@ 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;