Mercurial > emacs
diff src/keyboard.c @ 17967:08bf89d739cd
(command_loop_1): Pass 1 as new arg to sit_for.
(read_char): Likewise, pass 0 for it.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 27 May 1997 04:59:47 +0000 |
parents | 200058b61996 |
children | 22725376c70b |
line wrap: on
line diff
--- a/src/keyboard.c Tue May 27 04:59:29 1997 +0000 +++ b/src/keyboard.c Tue May 27 04:59:47 1997 +0000 @@ -1110,7 +1110,7 @@ { if (NILP (Vunread_command_events) && NILP (Vexecuting_macro) - && !NILP (sit_for (0, post_command_idle_delay, 0, 1))) + && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1))) safe_run_hooks (Qpost_command_idle_hook); } @@ -1438,7 +1438,7 @@ { if (NILP (Vunread_command_events) && NILP (Vexecuting_macro) - && !NILP (sit_for (0, post_command_idle_delay, 0, 1))) + && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1))) safe_run_hooks (Qpost_command_idle_hook); } @@ -1883,7 +1883,7 @@ { save_getcjmp (save_jump); restore_getcjmp (local_getcjmp); - tem0 = sit_for (echo_keystrokes, 0, 1, 1); + tem0 = sit_for (echo_keystrokes, 0, 1, 1, 0); restore_getcjmp (save_jump); if (EQ (tem0, Qt)) echo_now (); @@ -1952,7 +1952,7 @@ save_getcjmp (save_jump); restore_getcjmp (local_getcjmp); tem0 = sit_for (delay_level * XFASTINT (Vauto_save_timeout) / 4, - 0, 1, 1); + 0, 1, 1, 0); restore_getcjmp (save_jump); if (EQ (tem0, Qt))