1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-26 08:41:47 -07:00

(display_line): Indicate empty lines in active

mini-window.
This commit is contained in:
Gerd Moellmann 2001-10-18 08:47:12 +00:00
parent 723718ffe4
commit e6b70fd82e
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2001-10-18 Gerd Moellmann <gerd@gnu.org>
* xdisp.c (display_line): Indicate empty lines in active
mini-window.
2001-10-17 Andrew Innes <andrewi@gnu.org>
* fontset.h (struct font_info) [WINDOWSNT]: Add codepage field.

View file

@ -12797,7 +12797,8 @@ display_line (it)
row->displays_text_p = 0;
if (!NILP (XBUFFER (it->w->buffer)->indicate_empty_lines)
&& !MINI_WINDOW_P (it->w))
&& (!MINI_WINDOW_P (it->w)
|| (minibuf_level && EQ (it->window, minibuf_window))))
row->indicate_empty_line_p = 1;
}