]> git.eshelyaron.com Git - emacs.git/commitdiff
(command_loop_1): Clear echo area after 2 sec
authorRichard M. Stallman <rms@gnu.org>
Fri, 21 Jul 1995 07:47:25 +0000 (07:47 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 21 Jul 1995 07:47:25 +0000 (07:47 +0000)
only if the minibuffer is in the same place as the echo area.

src/keyboard.c

index dd9840bc1a968c61302b81ad643c4e600e9f17dd..5189cf58f0798515f80a2dc57011f7c85ac84e23 100644 (file)
@@ -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.  */