From 4d2e9f95a582236975e2f0fb7641f3157af898f3 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 25 Sep 2001 10:18:44 +0000 Subject: [PATCH] (read_char): Don't clear a message for a switch-frame event. From Stefan Monnier . --- src/keyboard.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/keyboard.c b/src/keyboard.c index f3d008e95dd..76a6c15c157 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -2734,7 +2734,9 @@ read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu) /* Now wipe the echo area, except for help events which do their own stuff with the echo area. */ - if (!CONSP (c) || !(EQ (Qhelp_echo, XCAR (c)))) + if (!CONSP (c) + || (!(EQ (Qhelp_echo, XCAR (c))) + && !(EQ (Qswitch_frame, XCAR (c))))) { if (!NILP (echo_area_buffer[0])) safe_run_hooks (Qecho_area_clear_hook); -- 2.39.2