From 80bd7bfcb9d5c0da1a9b0a6310c61841655b1982 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Wed, 17 Oct 2001 11:49:57 +0000 Subject: [PATCH] (display_line): Don't indicate empty lines in mini-windows. --- src/ChangeLog | 5 +++++ src/xdisp.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index c6106679cc9..0064ab20f66 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2001-10-17 Gerd Moellmann + + * xdisp.c (display_line): Don't indicate empty lines in + mini-windows. + 2001-10-15 Pavel Jan,Bm(Bk * editfns.c (Fchar_to_string): Make the doc string consistent with diff --git a/src/xdisp.c b/src/xdisp.c index 09bc0f8185a..a4a918fe108 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -12809,7 +12809,8 @@ display_line (it) row->glyphs[TEXT_AREA]->charpos = -1; row->displays_text_p = 0; - if (!NILP (XBUFFER (it->w->buffer)->indicate_empty_lines)) + if (!NILP (XBUFFER (it->w->buffer)->indicate_empty_lines) + && !MINI_WINDOW_P (it->w)) row->indicate_empty_line_p = 1; } -- 2.39.5