# HG changeset patch # User Gerd Moellmann # Date 997270867 0 # Node ID a57a66bf62dbff6863c705bac1c1fa943a5af292 # Parent c28225b647f26c31a0178aaed0307cee9d348a26 (adjust_glyph_matrix): In the optimization for windows whose height has changed, disable partially visible lines. diff -r c28225b647f2 -r a57a66bf62db src/dispnew.c --- a/src/dispnew.c Wed Aug 08 10:54:12 2001 +0000 +++ b/src/dispnew.c Wed Aug 08 11:41:07 2001 +0000 @@ -801,7 +801,9 @@ for (i = 0; i < matrix->nrows && matrix->rows[i].enabled_p; ++i) if (MATRIX_ROW_BOTTOM_Y (matrix->rows + i) >= window_height) { - ++i; + if (MATRIX_ROW_BOTTOM_Y (matrix->rows + i) + == window_height) + ++i; break; }