mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-21 05:21:37 -07:00
* dispnew.c (get_display_line): Don't abort if the frame is
invisible; since unmap events are handled at the interrupt level, a screen may become invisible at any time.
This commit is contained in:
parent
0ca96cef67
commit
7c3c72eca1
1 changed files with 1 additions and 1 deletions
|
|
@ -440,7 +440,7 @@ get_display_line (frame, vpos, hpos)
|
|||
register struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (frame);
|
||||
register GLYPH *p;
|
||||
|
||||
if (vpos < 0 || (! FRAME_VISIBLE_P (frame)))
|
||||
if (vpos < 0)
|
||||
abort ();
|
||||
|
||||
if ((desired_glyphs->enable[vpos]) && desired_glyphs->used[vpos] > hpos)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue