Mercurial > emacs
changeset 50285:f8cbf60835b4
(redisplay_window): If mini window's buffer is not
empty, then redisplay it like other windows.
author | John Paul Wallington <jpw@pobox.com> |
---|---|
date | Mon, 24 Mar 2003 03:32:51 +0000 |
parents | 641114a3e42d |
children | 53cf1a79b0f5 |
files | src/xdisp.c |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xdisp.c Mon Mar 24 01:46:29 2003 +0000 +++ b/src/xdisp.c Mon Mar 24 03:32:51 2003 +0000 @@ -11267,6 +11267,8 @@ } else if ((w != XWINDOW (minibuf_window) || minibuf_level == 0) + /* When buffer is nonempty, redisplay window normally. */ + && BUF_Z (XBUFFER (w->buffer)) == BUF_BEG (XBUFFER (w->buffer)) /* Quail displays non-mini buffers in minibuffer window. In that case, redisplay the window normally. */ && !NILP (Fmemq (w->buffer, Vminibuffer_list)))