+2002-07-22 Gerd Moellmann <gerd.moellmann@t-online.de>
+
+ * xdisp.c (display_line): Replace an abort with xassert.
+
2002-07-21 Richard M. Stallman <rms@gnu.org>
* xdisp.c (redisplay_window): Don't test BEG_UNCHANGED
{
/* Glyph is completely off the left margin of the
window. This should not happen because of the
- move_it_in_display_line at the start of
- this function. */
- abort ();
+ move_it_in_display_line at the start of this
+ function, unless the text display area of the
+ window is empty. */
+ xassert (it->first_visible_x <= it->last_visible_x);
}
}