1
Fork 0
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:
Jim Blandy 1992-09-22 04:29:12 +00:00
parent 0ca96cef67
commit 7c3c72eca1

View file

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