summaryrefslogtreecommitdiff
path: root/src/w32term.c
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2004-04-05 21:54:17 +0000
committerKim F. Storm <storm@cua.dk>2004-04-05 21:54:17 +0000
commit7292c311e893b6f12677bfea633cbfab5b5d16a2 (patch)
tree92926f4147160eab60a53d9a91c6ce0d7ab19acf /src/w32term.c
parentfbb6cd8c99cad5ce1cc20641d808c3889daf777b (diff)
downloademacs-7292c311e893b6f12677bfea633cbfab5b5d16a2.tar.gz
(w32_read_socket): Set mouse_face_hidden after clearing highlight.
Diffstat (limited to 'src/w32term.c')
-rw-r--r--src/w32term.c6
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)
{
if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight))
{
- dpyinfo->mouse_face_hidden = 1;
clear_mouse_face (dpyinfo);
+ dpyinfo->mouse_face_hidden = 1;
}
if (temp_index == sizeof temp_buffer / sizeof (short))
@@ -4268,8 +4268,8 @@ w32_read_socket (sd, expected, hold_quit)
{
if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight))
{
- dpyinfo->mouse_face_hidden = 1;
clear_mouse_face (dpyinfo);
+ dpyinfo->mouse_face_hidden = 1;
}
if (temp_index == sizeof temp_buffer / sizeof (short))
@@ -4773,7 +4773,7 @@ w32_read_socket (sd, expected, hold_quit)
help_echo_object = help_echo_window = Qnil;
help_echo_pos = -1;
}
-
+
any_help_event_p = 1;
gen_help_event (help_echo_string, frame, help_echo_window,
help_echo_object, help_echo_pos);