# HG changeset patch # User Richard M. Stallman # Date 806312845 0 # Node ID 397f6d4852ff7aa892f8be0372aa8a7aef8be16e # Parent c7bc7a24b1ff5f12f7e26e2010821257ac3ccf77 (command_loop_1): Clear echo area after 2 sec only if the minibuffer is in the same place as the echo area. diff -r c7bc7a24b1ff -r 397f6d4852ff src/keyboard.c --- a/src/keyboard.c Fri Jul 21 07:46:14 1995 +0000 +++ b/src/keyboard.c Fri Jul 21 07:47:25 1995 +0000 @@ -1110,7 +1110,8 @@ /* If minibuffer on and echo area in use, wait 2 sec and redraw minibuffer. */ - if (minibuf_level && echo_area_glyphs) + if (minibuf_level && echo_area_glyphs + && EQ (minibuf_window, echo_area_window)) { /* Bind inhibit-quit to t so that C-g gets read in rather than quitting back to the minibuffer. */