aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2005-02-15 06:41:26 +0000
committerRichard M. Stallman2005-02-15 06:41:26 +0000
commit0b5d283ff23ad9aac3a750c90742d409d21d10f0 (patch)
tree39a3eef44642fec95b435747f2dbd65429583ccd /src
parentb88e82fd1f4ad3607ef11dd12e8c78c4eea0a4dc (diff)
downloademacs-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.c2
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 {