aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-05-27 04:59:47 +0000
committerRichard M. Stallman1997-05-27 04:59:47 +0000
commit413650839b152ae4b08f888e92de7ba407113e76 (patch)
treeec6ccded766dccab7fe801898f776d05439d2e73
parent98136db32ab60663ab450f73e4bf1c3fa12cb2fc (diff)
downloademacs-413650839b152ae4b08f888e92de7ba407113e76.tar.gz
emacs-413650839b152ae4b08f888e92de7ba407113e76.zip
(command_loop_1): Pass 1 as new arg to sit_for.
(read_char): Likewise, pass 0 for it.
-rw-r--r--src/keyboard.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 61c4f4a3ad7..1953dfe82e9 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -1110,7 +1110,7 @@ command_loop_1 ()
1110 { 1110 {
1111 if (NILP (Vunread_command_events) 1111 if (NILP (Vunread_command_events)
1112 && NILP (Vexecuting_macro) 1112 && NILP (Vexecuting_macro)
1113 && !NILP (sit_for (0, post_command_idle_delay, 0, 1))) 1113 && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1)))
1114 safe_run_hooks (Qpost_command_idle_hook); 1114 safe_run_hooks (Qpost_command_idle_hook);
1115 } 1115 }
1116 1116
@@ -1438,7 +1438,7 @@ command_loop_1 ()
1438 { 1438 {
1439 if (NILP (Vunread_command_events) 1439 if (NILP (Vunread_command_events)
1440 && NILP (Vexecuting_macro) 1440 && NILP (Vexecuting_macro)
1441 && !NILP (sit_for (0, post_command_idle_delay, 0, 1))) 1441 && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1)))
1442 safe_run_hooks (Qpost_command_idle_hook); 1442 safe_run_hooks (Qpost_command_idle_hook);
1443 } 1443 }
1444 1444
@@ -1883,7 +1883,7 @@ read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
1883 { 1883 {
1884 save_getcjmp (save_jump); 1884 save_getcjmp (save_jump);
1885 restore_getcjmp (local_getcjmp); 1885 restore_getcjmp (local_getcjmp);
1886 tem0 = sit_for (echo_keystrokes, 0, 1, 1); 1886 tem0 = sit_for (echo_keystrokes, 0, 1, 1, 0);
1887 restore_getcjmp (save_jump); 1887 restore_getcjmp (save_jump);
1888 if (EQ (tem0, Qt)) 1888 if (EQ (tem0, Qt))
1889 echo_now (); 1889 echo_now ();
@@ -1952,7 +1952,7 @@ read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
1952 save_getcjmp (save_jump); 1952 save_getcjmp (save_jump);
1953 restore_getcjmp (local_getcjmp); 1953 restore_getcjmp (local_getcjmp);
1954 tem0 = sit_for (delay_level * XFASTINT (Vauto_save_timeout) / 4, 1954 tem0 = sit_for (delay_level * XFASTINT (Vauto_save_timeout) / 4,
1955 0, 1, 1); 1955 0, 1, 1, 0);
1956 restore_getcjmp (save_jump); 1956 restore_getcjmp (save_jump);
1957 1957
1958 if (EQ (tem0, Qt)) 1958 if (EQ (tem0, Qt))