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:
parent
37cdf2897a
commit
4da9abe653
1 changed files with 3 additions and 0 deletions
|
@ -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));
|
||||
|
|
Loading…
Add table
Reference in a new issue