diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-02-01 21:30:03 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-02-01 21:30:03 +0000 |
commit | c7de74d47d1cd3173b9f97f32af2d7e2531c5e97 (patch) | |
tree | f81e051f4320763a7ebd350de1df33bc639855f0 /src/dispnew.c | |
parent | 1b0bd55d5507ce6185bb18bd484749d292a2f4ca (diff) | |
download | emacs-c7de74d47d1cd3173b9f97f32af2d7e2531c5e97.tar.gz |
(update_frame): Compare FRAME_MINIBUF_WINDOW(f)
against with not minibuf_window but echo_area_window.
Diffstat (limited to 'src/dispnew.c')
-rw-r--r-- | src/dispnew.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index b0ee4066e6f..ac0d30cef44 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -1343,7 +1343,7 @@ update_frame (f, force, inhibit_hairy_id) /* These cases apply only to the frame that contains the active minibuffer window. */ && FRAME_HAS_MINIBUF_P (f) - && EQ (FRAME_MINIBUF_WINDOW (f), minibuf_window)) + && EQ (FRAME_MINIBUF_WINDOW (f), echo_area_window)) { int top = XINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top); int row, col; |