diff options
| author | Richard M. Stallman | 1996-02-01 21:30:03 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-02-01 21:30:03 +0000 |
| commit | 140f8645fe75e9ec1535e5ab13e7c2850236fc09 (patch) | |
| tree | 8347e1660a3df9696b379318f4e9ab0755be2886 | |
| parent | c0239a0b8b5efaa5b0666e778f61f5cd402c0526 (diff) | |
| download | emacs-140f8645fe75e9ec1535e5ab13e7c2850236fc09.tar.gz emacs-140f8645fe75e9ec1535e5ab13e7c2850236fc09.zip | |
(update_frame): Compare FRAME_MINIBUF_WINDOW(f)
against with not minibuf_window but echo_area_window.
| -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) | |||
| 1343 | /* These cases apply only to the frame that contains | 1343 | /* These cases apply only to the frame that contains |
| 1344 | the active minibuffer window. */ | 1344 | the active minibuffer window. */ |
| 1345 | && FRAME_HAS_MINIBUF_P (f) | 1345 | && FRAME_HAS_MINIBUF_P (f) |
| 1346 | && EQ (FRAME_MINIBUF_WINDOW (f), minibuf_window)) | 1346 | && EQ (FRAME_MINIBUF_WINDOW (f), echo_area_window)) |
| 1347 | { | 1347 | { |
| 1348 | int top = XINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top); | 1348 | int top = XINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top); |
| 1349 | int row, col; | 1349 | int row, col; |