comparison src/dispnew.c @ 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 41b77a76b885
children 0f214040f708
comparison
equal deleted inserted replaced
1191:4a1b4379eb53 1192:5c380ec3cfc6
438 { 438 {
439 register struct frame_glyphs *glyphs; 439 register struct frame_glyphs *glyphs;
440 register struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (frame); 440 register struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (frame);
441 register GLYPH *p; 441 register GLYPH *p;
442 442
443 if (vpos < 0 || (! FRAME_VISIBLE_P (frame))) 443 if (vpos < 0)
444 abort (); 444 abort ();
445 445
446 if ((desired_glyphs->enable[vpos]) && desired_glyphs->used[vpos] > hpos) 446 if ((desired_glyphs->enable[vpos]) && desired_glyphs->used[vpos] > hpos)
447 abort (); 447 abort ();
448 448