From 90bd80d47b7601d8a9a3936a02d085731500c4c9 Mon Sep 17 00:00:00 2001 From: Alan Third Date: Sun, 31 Oct 2021 10:25:15 +0000 Subject: [PATCH] Ensure help echoes only occur once on NS * src/nsterm.m ([EmacsView windowDidResignKey:]): Reset any_help_event_p as it is never reset otherwise. --- src/nsterm.m | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nsterm.m b/src/nsterm.m index aa29c13eb22..f4dbe959655 100644 --- a/src/nsterm.m +++ b/src/nsterm.m @@ -7073,6 +7073,7 @@ not_in_argv (NSString *arg) XSETFRAME (frame, emacsframe); help_echo_string = Qnil; gen_help_event (Qnil, frame, Qnil, Qnil, 0); + any_help_event_p = NO; } if (emacs_event && is_focus_frame) -- 2.39.2