aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2006-09-08 12:12:39 +0000
committerRichard M. Stallman <[email protected]>2006-09-08 12:12:39 +0000
commitd799329b41efb934cd65e4750305e6a854fafc70 (patch)
tree130914ddb379ac4c73ed9c849945df0fee4d1c29 /src/eval.c
parent66aa138de70071d3b6760821159be922989efba4 (diff)
(find_handler_clause): Give up on debugger if INPUT_BLOCKED_P.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c
index 5f3bd46c4d..dbd30eac20 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1904,6 +1904,9 @@ find_handler_clause (handlers, conditions, sig, data, debugger_value_ptr)
max_specpdl_size--;
}
if (! no_debugger
+ /* Don't try to run the debugger with interrupts blocked.
+ The editing loop would return anyway. */
+ && ! INPUT_BLOCKED_P
&& (EQ (sig_symbol, Qquit)
? debug_on_quit
: wants_debugger (Vdebug_on_error, conditions))