Mercurial > emacs
changeset 71138:5cf77229c85d
(sit_for): Perform redisplay even if input is pending
when redisplay-dont-pause is non-nil.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Thu, 01 Jun 2006 13:53:19 +0000 |
parents | 814a9e8a0f9a |
children | 355a8928782c |
files | src/dispnew.c |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dispnew.c Thu Jun 01 13:52:42 2006 +0000 +++ b/src/dispnew.c Thu Jun 01 13:53:19 2006 +0000 @@ -6405,7 +6405,10 @@ { 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)