diff options
| author | Gerd Moellmann | 2001-10-17 11:51:24 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-10-17 11:51:24 +0000 |
| commit | 2ad551af63560e0c39d206724645b2c826c85956 (patch) | |
| tree | 0914e118b0e5b6464e5eed01771c186bf9bae401 /src | |
| parent | 15b00083c273c153c4fd1f165a13ea54911a99f7 (diff) | |
| download | emacs-2ad551af63560e0c39d206724645b2c826c85956.tar.gz emacs-2ad551af63560e0c39d206724645b2c826c85956.zip | |
(display_line): Don't indicate empty lines in
mini-windows.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 3 |
1 files changed, 2 insertions, 1 deletions
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) | |||
| 12803 | row->glyphs[TEXT_AREA]->charpos = -1; | 12803 | row->glyphs[TEXT_AREA]->charpos = -1; |
| 12804 | row->displays_text_p = 0; | 12804 | row->displays_text_p = 0; |
| 12805 | 12805 | ||
| 12806 | if (!NILP (XBUFFER (it->w->buffer)->indicate_empty_lines)) | 12806 | if (!NILP (XBUFFER (it->w->buffer)->indicate_empty_lines) |
| 12807 | && !MINI_WINDOW_P (it->w)) | ||
| 12807 | row->indicate_empty_line_p = 1; | 12808 | row->indicate_empty_line_p = 1; |
| 12808 | } | 12809 | } |
| 12809 | 12810 | ||