aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-07-21 07:47:25 +0000
committerRichard M. Stallman1995-07-21 07:47:25 +0000
commit93127526ed7cf1d78de49bff005908c4ecc64460 (patch)
tree77be5f14a7f5a8963211f813e1d27a6d7f774e92 /src
parent2577053b1dc99c0be16f43a0d432e876760c1e57 (diff)
downloademacs-93127526ed7cf1d78de49bff005908c4ecc64460.tar.gz
emacs-93127526ed7cf1d78de49bff005908c4ecc64460.zip
(command_loop_1): Clear echo area after 2 sec
only if the minibuffer is in the same place as the echo area.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c3
1 files changed, 2 insertions, 1 deletions
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 ()
1110 /* If minibuffer on and echo area in use, 1110 /* If minibuffer on and echo area in use,
1111 wait 2 sec and redraw minibuffer. */ 1111 wait 2 sec and redraw minibuffer. */
1112 1112
1113 if (minibuf_level && echo_area_glyphs) 1113 if (minibuf_level && echo_area_glyphs
1114 && EQ (minibuf_window, echo_area_window))
1114 { 1115 {
1115 /* Bind inhibit-quit to t so that C-g gets read in 1116 /* Bind inhibit-quit to t so that C-g gets read in
1116 rather than quitting back to the minibuffer. */ 1117 rather than quitting back to the minibuffer. */