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 | |
| 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')
| -rw-r--r-- | src/ChangeLog | 17 | ||||
| -rw-r--r-- | src/eval.c | 3 |
2 files changed, 20 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 8d2a22d1809..cfbe21a77d4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,20 @@ | |||
| 1 | 2006-09-08 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * eval.c (find_handler_clause): Give up on debugger if INPUT_BLOCKED_P. | ||
| 4 | |||
| 5 | * casetab.c (init_casetab_once): Call set_case_table. | ||
| 6 | |||
| 7 | * emacs.c (shut_down_emacs): Set inhibit_sentinels. | ||
| 8 | |||
| 9 | * process.c (inhibit_sentinels): New variable. | ||
| 10 | (exec_sentinel): Test inhibit_sentinels. | ||
| 11 | (init_process): Initialize it. | ||
| 12 | |||
| 13 | * process.h (inhibit_sentinels): Add decl. | ||
| 14 | |||
| 15 | * search.c (looking_at_1, string_match_1, search_command): | ||
| 16 | Make syntax table's canon table point to eqv table. | ||
| 17 | |||
| 1 | 2006-09-08 Andreas Schwab <schwab@suse.de> | 18 | 2006-09-08 Andreas Schwab <schwab@suse.de> |
| 2 | 19 | ||
| 3 | * print.c (strout): Fix whitespace. | 20 | * print.c (strout): Fix whitespace. |
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)) |