emacs-pretest-bug
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ispell help in minibuffer not visible


From: John Paul Wallington
Subject: Re: ispell help in minibuffer not visible
Date: Thu, 20 Mar 2003 17:32:33 +0000
User-agent: Gnus/5.090017 (Oort Gnus v0.17) Emacs/21.3.50 (gnu/linux)

Richard Stallman <address@hidden> wrote:

> Let's try what I proposed: to display the minibuffer if it is
> nonempty.

How about this:

--- xdisp.c     18 Mar 2003 23:46:01 -0000      1.814
+++ xdisp.c     20 Mar 2003 17:28:39 -0000
@@ -10601,6 +10601,9 @@
        }
       else if ((w != XWINDOW (minibuf_window)
                || minibuf_level == 0)
+              /* When minibuffer is nonempty, redisplay window normally. */
+              && (BUF_Z (XBUFFER (w->buffer)) 
+                  - BUF_BEG (XBUFFER (w->buffer)) == 0)
               /* Quail displays non-mini buffers in minibuffer window.
                  In that case, redisplay the window normally.  */
               && !NILP (Fmemq (w->buffer, Vminibuffer_list)))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]