From e6aa7813abc055f2fd9b615dfcb1dab3e07d368c Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 25 Feb 1996 20:44:09 +0000 Subject: [PATCH] (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. --- src/keyboard.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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; -- 2.39.5