# HG changeset patch # User Richard M. Stallman # Date 812711635 0 # Node ID a9efbc138c2335960a3bf7bf88cfb9a3c951ea63 # Parent ea64c261c72a9b9245503200406f0cd15948607d (get_display_line): Don't abort if there's text in the line to the right beyond HPOS. (quit_error_check): Make this a no-op. diff -r ea64c261c72a -r a9efbc138c23 src/dispnew.c --- a/src/dispnew.c Tue Oct 03 09:12:50 1995 +0000 +++ b/src/dispnew.c Tue Oct 03 09:13:55 1995 +0000 @@ -534,9 +534,6 @@ if (vpos < 0) abort (); - if ((desired_glyphs->enable[vpos]) && desired_glyphs->used[vpos] > hpos) - abort (); - if (! desired_glyphs->enable[vpos]) { desired_glyphs->used[vpos] = 0; @@ -1400,12 +1397,14 @@ void quit_error_check () { +#if 0 if (FRAME_DESIRED_GLYPHS (selected_frame) == 0) return; if (FRAME_DESIRED_GLYPHS (selected_frame)->enable[0]) abort (); if (FRAME_DESIRED_GLYPHS (selected_frame)->enable[FRAME_HEIGHT (selected_frame) - 1]) abort (); +#endif } /* Decide what insert/delete line to do, and do it */