From: YAMAMOTO Mitsuharu Date: Wed, 12 Oct 2005 11:18:01 +0000 (+0000) Subject: (note_mouse_movement): Restore help_echo_string if mouse is moved X-Git-Tag: emacs-pretest-22.0.90~6644 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=47b40faff44bc6a9b32daab56c791bcd96eb8c57;p=emacs.git (note_mouse_movement): Restore help_echo_string if mouse is moved inside last_mouse_glyph. --- diff --git a/src/macterm.c b/src/macterm.c index e18f3ee48a0..c41e1f0ffed 100644 --- a/src/macterm.c +++ b/src/macterm.c @@ -4193,6 +4193,8 @@ note_mouse_movement (frame, pos) /* Remember which glyph we're now on. */ remember_mouse_glyph (frame, pos->h, pos->v, &last_mouse_glyph); } + else + help_echo_string = previous_help_echo_string; } diff --git a/src/w32term.c b/src/w32term.c index 96d26344b53..b6349eb63a1 100644 --- a/src/w32term.c +++ b/src/w32term.c @@ -3238,6 +3238,8 @@ note_mouse_movement (frame, msg) other times. */ remember_mouse_glyph (frame, mouse_x, mouse_y, &last_mouse_glyph); } + else + help_echo_string = previous_help_echo_string; }