aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorRichard M. Stallman2006-09-08 12:12:39 +0000
committerRichard M. Stallman2006-09-08 12:12:39 +0000
commitd799329b41efb934cd65e4750305e6a854fafc70 (patch)
tree130914ddb379ac4c73ed9c849945df0fee4d1c29 /src/eval.c
parent66aa138de70071d3b6760821159be922989efba4 (diff)
downloademacs-d799329b41efb934cd65e4750305e6a854fafc70.tar.gz
emacs-d799329b41efb934cd65e4750305e6a854fafc70.zip
(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 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)
1904 max_specpdl_size--; 1904 max_specpdl_size--;
1905 } 1905 }
1906 if (! no_debugger 1906 if (! no_debugger
1907 /* Don't try to run the debugger with interrupts blocked.
1908 The editing loop would return anyway. */
1909 && ! INPUT_BLOCKED_P
1907 && (EQ (sig_symbol, Qquit) 1910 && (EQ (sig_symbol, Qquit)
1908 ? debug_on_quit 1911 ? debug_on_quit
1909 : wants_debugger (Vdebug_on_error, conditions)) 1912 : wants_debugger (Vdebug_on_error, conditions))