diff options
| author | Gerd Moellmann | 2000-09-19 15:18:07 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-09-19 15:18:07 +0000 |
| commit | 001f93f3eb48bbf9c8ee75445fdc623ede8ca441 (patch) | |
| tree | 4e9abcfaafd4f7530464a023ced21b8d0eef6d6e | |
| parent | 8fb3df5935fb873441994c63e00b4d17f335603a (diff) | |
| download | emacs-001f93f3eb48bbf9c8ee75445fdc623ede8ca441.tar.gz emacs-001f93f3eb48bbf9c8ee75445fdc623ede8ca441.zip | |
(update_window_line): Make sure to always draw
mode-lines.
| -rw-r--r-- | src/dispnew.c | 3 |
1 files changed, 2 insertions, 1 deletions
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) | |||
| 4133 | built with a vscroll and then make_cursor_line_fully_visible shifts | 4133 | built with a vscroll and then make_cursor_line_fully_visible shifts |
| 4134 | the matrix. Make sure to make such rows current anyway, since | 4134 | the matrix. Make sure to make such rows current anyway, since |
| 4135 | we need the correct y-position, for example, in the current matrix. */ | 4135 | we need the correct y-position, for example, in the current matrix. */ |
| 4136 | if (desired_row->visible_height > 0) | 4136 | if (desired_row->mode_line_p |
| 4137 | || desired_row->visible_height > 0) | ||
| 4137 | { | 4138 | { |
| 4138 | xassert (desired_row->enabled_p); | 4139 | xassert (desired_row->enabled_p); |
| 4139 | 4140 | ||