Mercurial > emacs
changeset 13105:a9efbc138c23
(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.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 03 Oct 1995 09:13:55 +0000 |
parents | ea64c261c72a |
children | 22011e724596 |
files | src/dispnew.c |
diffstat | 1 files changed, 2 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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 */