From c0bcce6f0757c6230cffe0cd00ffcb4ac0a937a9 Mon Sep 17 00:00:00 2001 From: John Paul Wallington Date: Mon, 24 Mar 2003 03:33:53 +0000 Subject: [PATCH] (redisplay_window): If mini window's buffer is not empty, then redisplay it like other windows. --- src/ChangeLog | 5 +++++ src/xdisp.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index f8facf76f81..f356ee5515b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2003-03-24 John Paul Wallington + + * xdisp.c (redisplay_window): If mini window's buffer is not + empty, then redisplay it like other windows. + 2003-03-23 Kim F. Storm * w32term.c (w32_draw_window_cursor): Fix last change. diff --git a/src/xdisp.c b/src/xdisp.c index b8f8e03abc2..a82b71a5563 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -11267,6 +11267,8 @@ redisplay_window (window, just_this_one_p) } 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))) -- 2.11.4.GIT