From: Gerd Möllmann Date: Fri, 15 Nov 2024 07:15:10 +0000 (+0100) Subject: Respect redisplay_dont_pause in combined update X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=31c16959708cae2a8f3c39946178dc72797af72c;p=emacs.git Respect redisplay_dont_pause in combined update * src/dispnew.c (combine_updates): Respect redisplay_dont_pause. This is important for echo_area_display which binds that variable. (cherry picked from commit 4da9abe653fe536afc67fe5e175227eac10e31cc) --- diff --git a/src/dispnew.c b/src/dispnew.c index 06666e31873..b78af379893 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -3999,6 +3999,9 @@ combine_updates_for_frame (struct frame *f, bool force_p, bool inhibit_scrolling bool combine_updates (Lisp_Object roots, bool force_p, bool inhibit_scrolling) { + if (redisplay_dont_pause) + force_p = true; + for (; CONSP (roots); roots = XCDR (roots)) { struct frame *root = XFRAME (XCAR (roots));