From 31c16959708cae2a8f3c39946178dc72797af72c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gerd=20M=C3=B6llmann?= Date: Fri, 15 Nov 2024 08:15:10 +0100 Subject: [PATCH] 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) --- src/dispnew.c | 3 +++ 1 file changed, 3 insertions(+) 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)); -- 2.39.5