1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

(w32_read_socket): Set mouse_face_hidden after clearing highlight.

This commit is contained in:
Kim F. Storm 2004-04-05 21:54:17 +00:00
parent fbb6cd8c99
commit 7292c311e8

View File

@ -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);