From 4da9abe653fe536afc67fe5e175227eac10e31cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?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. --- src/dispnew.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/dispnew.c b/src/dispnew.c index 06d1ae3e6c6..d473a77e3ad 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -4002,6 +4002,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));