# HG changeset patch # User Gerd Moellmann # Date 996741026 0 # Node ID 0bf558900e0a871ce10309f5fc22881c68efce10 # Parent 683a60ba253338246209e844afe3d991d8f595d0 (redisplay_internal): Take message_cleared_p into account only if minibuf_level == 0. diff -r 683a60ba2533 -r 0bf558900e0a src/xdisp.c --- 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;