diff options
author | Richard M. Stallman <rms@gnu.org> | 2006-09-08 12:12:39 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2006-09-08 12:12:39 +0000 |
commit | d799329b41efb934cd65e4750305e6a854fafc70 (patch) | |
tree | 130914ddb379ac4c73ed9c849945df0fee4d1c29 /src/eval.c | |
parent | 66aa138de70071d3b6760821159be922989efba4 (diff) | |
download | emacs-d799329b41efb934cd65e4750305e6a854fafc70.tar.gz |
(find_handler_clause): Give up on debugger if INPUT_BLOCKED_P.
Diffstat (limited to 'src/eval.c')
-rw-r--r-- | src/eval.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c index 5f3bd46c4dc..dbd30eac201 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)) |