diff options
| author | Richard M. Stallman | 2006-09-08 12:12:39 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-09-08 12:12:39 +0000 |
| commit | d799329b41efb934cd65e4750305e6a854fafc70 (patch) | |
| tree | 130914ddb379ac4c73ed9c849945df0fee4d1c29 /src/eval.c | |
| parent | 66aa138de70071d3b6760821159be922989efba4 (diff) | |
| download | emacs-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.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) | |||
| 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)) |