diff options
| -rw-r--r-- | src/eval.c | 4 |
1 files changed, 4 insertions, 0 deletions
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) | |||
| 1172 | struct catchtag c; | 1172 | struct catchtag c; |
| 1173 | struct handler h; | 1173 | struct handler h; |
| 1174 | 1174 | ||
| 1175 | #if 0 /* Can't do this check anymore because realize_basic_faces has | ||
| 1176 | to BLOCK_INPUT, and can call Lisp. What's really needed is a | ||
| 1177 | flag indicating that we're currently handling a signal. */ | ||
| 1175 | /* Since Fsignal resets this to 0, it had better be 0 now | 1178 | /* Since Fsignal resets this to 0, it had better be 0 now |
| 1176 | or else we have a potential bug. */ | 1179 | or else we have a potential bug. */ |
| 1177 | if (interrupt_input_blocked != 0) | 1180 | if (interrupt_input_blocked != 0) |
| 1178 | abort (); | 1181 | abort (); |
| 1182 | #endif | ||
| 1179 | 1183 | ||
| 1180 | c.tag = Qnil; | 1184 | c.tag = Qnil; |
| 1181 | c.val = Qnil; | 1185 | c.val = Qnil; |