From 93127526ed7cf1d78de49bff005908c4ecc64460 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 21 Jul 1995 07:47:25 +0000 Subject: [PATCH] (command_loop_1): Clear echo area after 2 sec only if the minibuffer is in the same place as the echo area. --- src/keyboard.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/keyboard.c b/src/keyboard.c index dd9840bc1a9..5189cf58f07 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -1110,7 +1110,8 @@ command_loop_1 () /* 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. */ -- 2.39.2