Mercurial > emacs
changeset 38652:0bf558900e0a
(redisplay_internal): Take message_cleared_p into
account only if minibuf_level == 0.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Thu, 02 Aug 2001 08:30:26 +0000 |
parents | 683a60ba2533 |
children | 8b46b3446482 |
files | src/xdisp.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xdisp.c Wed Aug 01 19:07:33 2001 +0000 +++ b/src/xdisp.c Thu Aug 02 08:30:26 2001 +0000 @@ -8418,7 +8418,7 @@ the echo area should be cleared. */ if ((!NILP (echo_area_buffer[0]) && !display_last_displayed_message_p) || (!NILP (echo_area_buffer[1]) && display_last_displayed_message_p) - || message_cleared_p) + || (message_cleared_p && minibuf_level == 0)) { int window_height_changed_p = echo_area_display (0); must_finish = 1;