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.
This commit is contained in:
Gerd Möllmann 2024-11-15 08:15:10 +01:00
parent 37cdf2897a
commit 4da9abe653

View file

@ -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));