]> git.eshelyaron.com Git - emacs.git/commitdiff
(display_line): Don't indicate empty lines in
authorGerd Moellmann <gerd@gnu.org>
Wed, 17 Oct 2001 11:49:57 +0000 (11:49 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 17 Oct 2001 11:49:57 +0000 (11:49 +0000)
mini-windows.

src/ChangeLog
src/xdisp.c

index c6106679cc9444b5c4984c012094563ed4bc0582..0064ab20f666eb317254611d6a35fd775086c7d4 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-17  Gerd Moellmann  <gerd@gnu.org>
+
+       * xdisp.c (display_line): Don't indicate empty lines in
+       mini-windows.
+
 2001-10-15  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
 
        * editfns.c (Fchar_to_string): Make the doc string consistent with
index 09bc0f8185ab40781cda8516260d8ef9a23cbe81..a4a918fe1089b32dc6563f2caa99e40490413d26 100644 (file)
@@ -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;
            }