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