# HG changeset patch # User Gerd Moellmann # Date 1003319484 0 # Node ID 17dadb0a50d20103461b58a6f6f764994d6cf632 # Parent fd2d38d6e2e6c5bae9ba021bd1b4590b2052e9d9 (display_line): Don't indicate empty lines in mini-windows. diff -r fd2d38d6e2e6 -r 17dadb0a50d2 src/xdisp.c --- a/src/xdisp.c Wed Oct 17 11:50:56 2001 +0000 +++ b/src/xdisp.c Wed Oct 17 11:51:24 2001 +0000 @@ -12803,7 +12803,8 @@ 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; }