# HG changeset patch # User Kim F. Storm # Date 1149169999 0 # Node ID 5cf77229c85d4d03f842852c2427d12640c85d13 # Parent 814a9e8a0f9a5cc605cad2dc04fd03a1bc86f3b9 (sit_for): Perform redisplay even if input is pending when redisplay-dont-pause is non-nil. diff -r 814a9e8a0f9a -r 5cf77229c85d src/dispnew.c --- 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)