Mercurial > emacs
changeset 40021:4633e50aa90d
(display_line): Indicate empty lines in active
mini-window.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Thu, 18 Oct 2001 08:46:54 +0000 |
parents | fef12157c23c |
children | 0e38dd14faec |
files | src/xdisp.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xdisp.c Thu Oct 18 08:04:48 2001 +0000 +++ b/src/xdisp.c Thu Oct 18 08:46:54 2001 +0000 @@ -12797,7 +12797,8 @@ 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; }