From 001f93f3eb48bbf9c8ee75445fdc623ede8ca441 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 19 Sep 2000 15:18:07 +0000 Subject: [PATCH] (update_window_line): Make sure to always draw mode-lines. --- src/dispnew.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dispnew.c b/src/dispnew.c index 40309231c14..947227b8a08 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -4133,7 +4133,8 @@ update_window_line (w, vpos, mouse_face_overwritten_p) 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); -- 2.39.2