# HG changeset patch # User Kim F. Storm # Date 1126220236 0 # Node ID 0f39e01da672faa8aab282894bd72d1c90eaa5a3 # Parent de5656167077ad2905066c410c6763aa3f443a2a * xdisp.c (try_window_reusing_current_matrix): Clear mode_line_p flag in disabled rows below the window. diff -r de5656167077 -r 0f39e01da672 src/xdisp.c --- a/src/xdisp.c Thu Sep 08 22:55:37 2005 +0000 +++ b/src/xdisp.c Thu Sep 08 22:57:16 2005 +0000 @@ -13079,7 +13079,7 @@ /* Disable lines in the current matrix which are now below the window. */ for (++row; row < bottom_row; ++row) - row->enabled_p = 0; + row->enabled_p = row->mode_line_p = 0; } /* Update window_end_pos etc.; last_reused_text_row is the last