diff options
| author | Richard M. Stallman | 2005-02-15 06:41:26 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-02-15 06:41:26 +0000 |
| commit | 0b5d283ff23ad9aac3a750c90742d409d21d10f0 (patch) | |
| tree | 39a3eef44642fec95b435747f2dbd65429583ccd /src | |
| parent | b88e82fd1f4ad3607ef11dd12e8c78c4eea0a4dc (diff) | |
| download | emacs-0b5d283ff23ad9aac3a750c90742d409d21d10f0.tar.gz emacs-0b5d283ff23ad9aac3a750c90742d409d21d10f0.zip | |
(command_loop_1): Always use safe_run_hooks to run Qdeferred_action_function.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 996aad15b30..67040847af7 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -1442,7 +1442,7 @@ command_loop_1 () | |||
| 1442 | resize_echo_area_exactly (); | 1442 | resize_echo_area_exactly (); |
| 1443 | 1443 | ||
| 1444 | if (!NILP (Vdeferred_action_list)) | 1444 | if (!NILP (Vdeferred_action_list)) |
| 1445 | call0 (Vdeferred_action_function); | 1445 | safe_run_hooks (Qdeferred_action_function); |
| 1446 | 1446 | ||
| 1447 | if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks)) | 1447 | if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks)) |
| 1448 | { | 1448 | { |