Mercurial > emacs
changeset 1192:5c380ec3cfc6
* 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.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Tue, 22 Sep 1992 04:29:12 +0000 |
parents | 4a1b4379eb53 |
children | e1329d41271d |
files | src/dispnew.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dispnew.c Tue Sep 22 04:28:52 1992 +0000 +++ b/src/dispnew.c Tue Sep 22 04:29:12 1992 +0000 @@ -440,7 +440,7 @@ 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)