From: Richard M. Stallman Date: Sun, 25 Feb 1996 20:44:09 +0000 (+0000) Subject: (command_loop_1): Explicitly clear the echo area X-Git-Tag: emacs-19.34~1194 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e6aa7813abc055f2fd9b615dfcb1dab3e07d368c;p=emacs.git (command_loop_1): Explicitly clear the echo area with message2; don't just clear echo_area_glyphs. Don't set no_direct in that case. --- diff --git a/src/keyboard.c b/src/keyboard.c index 50d39831497..f30920bd894 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -1116,8 +1116,10 @@ command_loop_1 () Fsit_for (make_number (2), Qnil, Qnil); unbind_to (count, Qnil); - echo_area_glyphs = 0; - no_direct = 1; + /* Clear the echo area. */ + message2 (0); + + /* If a C-g came in before, treat it as input now. */ if (!NILP (Vquit_flag)) { Vquit_flag = Qnil;