aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2005-09-08 22:57:16 +0000
committerKim F. Storm2005-09-08 22:57:16 +0000
commit49c560366c80a7df77dd630f4de1ad3da3287882 (patch)
treedacf60a65cbeae72433a790d29caeb755e743fa2 /src
parentaeb55c4414224418ed38d68164a9e390d7ce13fe (diff)
downloademacs-49c560366c80a7df77dd630f4de1ad3da3287882.tar.gz
emacs-49c560366c80a7df77dd630f4de1ad3da3287882.zip
* xdisp.c (try_window_reusing_current_matrix): Clear mode_line_p
flag in disabled rows below the window.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 324e7e29f07..f06121a475c 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -13079,7 +13079,7 @@ try_window_reusing_current_matrix (w)
13079 /* Disable lines in the current matrix which are now 13079 /* Disable lines in the current matrix which are now
13080 below the window. */ 13080 below the window. */
13081 for (++row; row < bottom_row; ++row) 13081 for (++row; row < bottom_row; ++row)
13082 row->enabled_p = 0; 13082 row->enabled_p = row->mode_line_p = 0;
13083 } 13083 }
13084 13084
13085 /* Update window_end_pos etc.; last_reused_text_row is the last 13085 /* Update window_end_pos etc.; last_reused_text_row is the last