Mercurial > emacs
changeset 31726:59b455472b56
(update_window_line): Make sure to always draw
mode-lines.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Tue, 19 Sep 2000 15:18:07 +0000 |
parents | a8e9876c67bd |
children | 6a5d6fdda14c |
files | src/dispnew.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dispnew.c Tue Sep 19 15:14:42 2000 +0000 +++ b/src/dispnew.c Tue Sep 19 15:18:07 2000 +0000 @@ -4133,7 +4133,8 @@ built with a vscroll and then make_cursor_line_fully_visible shifts the matrix. Make sure to make such rows current anyway, since we need the correct y-position, for example, in the current matrix. */ - if (desired_row->visible_height > 0) + if (desired_row->mode_line_p + || desired_row->visible_height > 0) { xassert (desired_row->enabled_p);