From 2ad551af63560e0c39d206724645b2c826c85956 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Wed, 17 Oct 2001 11:51:24 +0000 Subject: [PATCH] (display_line): Don't indicate empty lines in mini-windows. --- src/xdisp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/xdisp.c b/src/xdisp.c index d967ac8d438..e11347dca90 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -12803,7 +12803,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