mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-21 20:37:38 +00:00
(sit_for): Perform redisplay even if input is pending
when redisplay-dont-pause is non-nil.
This commit is contained in:
parent
a71a77046d
commit
29bcbe54e1
1 changed files with 4 additions and 1 deletions
|
|
@ -6405,7 +6405,10 @@ sit_for (sec, usec, reading, display, initial_display)
|
|||
{
|
||||
swallow_events (display);
|
||||
|
||||
if (detect_input_pending_run_timers (display) || !NILP (Vexecuting_kbd_macro))
|
||||
if ((detect_input_pending_run_timers (display)
|
||||
&& !redisplay_dont_pause)
|
||||
|| !NILP (Vexecuting_kbd_macro))
|
||||
|
||||
return Qnil;
|
||||
|
||||
if (initial_display)
|
||||
|
|
|
|||
Loading…
Reference in a new issue