diff src/xdisp.c @ 107706:59d957b53239

xdisp.c (note_mouse_highlight): Don't do highlight if pointer is invisible (Bug#5766).
author Jan D. <jan.h.d@swipnet.se>
date Tue, 30 Mar 2010 19:26:58 +0200
parents 5860ffa0c5d9
children 6db4a0b4404d a8900b7136bc
line wrap: on
line diff
--- a/src/xdisp.c	Tue Mar 30 21:50:44 2010 +0900
+++ b/src/xdisp.c	Tue Mar 30 19:26:58 2010 +0200
@@ -23551,7 +23551,8 @@
 #endif
 
   if (NILP (Vmouse_highlight)
-      || !f->glyphs_initialized_p)
+      || !f->glyphs_initialized_p
+      || f->pointer_invisible)
     return;
 
   dpyinfo->mouse_face_mouse_x = x;