# HG changeset patch # User Richard M. Stallman # Date 825281049 0 # Node ID 4edbb03c523b7082736635531137ce1176b38c11 # Parent 7a50843d260f7c28d522cb1c522fc8f1e5c8e343 (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 -r 7a50843d260f -r 4edbb03c523b src/keyboard.c --- a/src/keyboard.c Sun Feb 25 19:13:40 1996 +0000 +++ b/src/keyboard.c Sun Feb 25 20:44:09 1996 +0000 @@ -1116,8 +1116,10 @@ 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;