; * src/xdisp.c (redisplay_internal): Reinstate the FRAME_LIVE_P test.
This commit is contained in:
parent
a825aa0b13
commit
38866510c7
1 changed files with 4 additions and 0 deletions
|
@ -16867,6 +16867,10 @@ redisplay_internal (void)
|
|||
else if (!REDISPLAY_SOME_P ())
|
||||
f->redisplay = true;
|
||||
|
||||
/* The X error handler may have deleted that frame. */
|
||||
if (!FRAME_LIVE_P (f))
|
||||
continue;
|
||||
|
||||
/* Any scroll bars which redisplay_windows should have
|
||||
nuked should now go away. */
|
||||
if (gcscrollbars && FRAME_TERMINAL (f)->judge_scroll_bars_hook)
|
||||
|
|
Loading…
Add table
Reference in a new issue