diff options
| author | Kim F. Storm | 2004-04-05 21:54:17 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-04-05 21:54:17 +0000 |
| commit | 7292c311e893b6f12677bfea633cbfab5b5d16a2 (patch) | |
| tree | 92926f4147160eab60a53d9a91c6ce0d7ab19acf /src/w32term.c | |
| parent | fbb6cd8c99cad5ce1cc20641d808c3889daf777b (diff) | |
| download | emacs-7292c311e893b6f12677bfea633cbfab5b5d16a2.tar.gz emacs-7292c311e893b6f12677bfea633cbfab5b5d16a2.zip | |
(w32_read_socket): Set mouse_face_hidden after clearing highlight.
Diffstat (limited to 'src/w32term.c')
| -rw-r--r-- | src/w32term.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/w32term.c b/src/w32term.c index f69b0860bab..5e81afc7724 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -4245,8 +4245,8 @@ w32_read_socket (sd, expected, hold_quit) | |||
| 4245 | { | 4245 | { |
| 4246 | if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)) | 4246 | if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)) |
| 4247 | { | 4247 | { |
| 4248 | dpyinfo->mouse_face_hidden = 1; | ||
| 4249 | clear_mouse_face (dpyinfo); | 4248 | clear_mouse_face (dpyinfo); |
| 4249 | dpyinfo->mouse_face_hidden = 1; | ||
| 4250 | } | 4250 | } |
| 4251 | 4251 | ||
| 4252 | if (temp_index == sizeof temp_buffer / sizeof (short)) | 4252 | if (temp_index == sizeof temp_buffer / sizeof (short)) |
| @@ -4268,8 +4268,8 @@ w32_read_socket (sd, expected, hold_quit) | |||
| 4268 | { | 4268 | { |
| 4269 | if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)) | 4269 | if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)) |
| 4270 | { | 4270 | { |
| 4271 | dpyinfo->mouse_face_hidden = 1; | ||
| 4272 | clear_mouse_face (dpyinfo); | 4271 | clear_mouse_face (dpyinfo); |
| 4272 | dpyinfo->mouse_face_hidden = 1; | ||
| 4273 | } | 4273 | } |
| 4274 | 4274 | ||
| 4275 | if (temp_index == sizeof temp_buffer / sizeof (short)) | 4275 | if (temp_index == sizeof temp_buffer / sizeof (short)) |
| @@ -4773,7 +4773,7 @@ w32_read_socket (sd, expected, hold_quit) | |||
| 4773 | help_echo_object = help_echo_window = Qnil; | 4773 | help_echo_object = help_echo_window = Qnil; |
| 4774 | help_echo_pos = -1; | 4774 | help_echo_pos = -1; |
| 4775 | } | 4775 | } |
| 4776 | 4776 | ||
| 4777 | any_help_event_p = 1; | 4777 | any_help_event_p = 1; |
| 4778 | gen_help_event (help_echo_string, frame, help_echo_window, | 4778 | gen_help_event (help_echo_string, frame, help_echo_window, |
| 4779 | help_echo_object, help_echo_pos); | 4779 | help_echo_object, help_echo_pos); |