From: Jason Rumney Date: Sat, 26 Jan 2002 16:29:16 +0000 (+0000) Subject: (note_mouse_highlight): Reset help_echo. X-Git-Tag: emacs-21.2~151 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d8e4690978b15cabae2a5479f908fb30352dbca8;p=emacs.git (note_mouse_highlight): Reset help_echo. --- diff --git a/src/ChangeLog b/src/ChangeLog index 147ee0c8fee..3b14828798a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2002-01-26 Jason Rumney + + * w32term.c (note_mouse_highlight): Reset help_echo. + 2002-01-24 Jason Rumney * w32term.c (x_scroll_run): Use ScrollWindowEx in place of BitBlt. diff --git a/src/w32term.c b/src/w32term.c index 88cbd325401..12704fb8bc1 100644 --- a/src/w32term.c +++ b/src/w32term.c @@ -6547,6 +6547,9 @@ note_mouse_highlight (f, x, y) if (!WINDOWP (window)) return; + /* Reset help_echo. It will get recomputed below. */ + help_echo = Qnil; + /* Convert to window-relative pixel coordinates. */ w = XWINDOW (window); frame_to_window_pixel_xy (w, &x, &y);