diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 8 |
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)) |