emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r99702: xdisp.c (note_mouse_highli


From: Jan D.
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r99702: xdisp.c (note_mouse_highlight): Don't do highlight if pointer is invisible (Bug#5766).
Date: Tue, 30 Mar 2010 19:26:58 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99702
committer: Jan D. <address@hidden>
branch nick: emacs-23
timestamp: Tue 2010-03-30 19:26:58 +0200
message:
  xdisp.c (note_mouse_highlight): Don't do highlight if pointer is invisible 
(Bug#5766).
modified:
  src/ChangeLog
  src/xdisp.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-03-29 23:48:44 +0000
+++ b/src/ChangeLog     2010-03-30 17:26:58 +0000
@@ -1,3 +1,8 @@
+2010-03-30  Jan Djärv  <address@hidden>
+
+       * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
+       invisible (Bug#5766).
+
 2010-03-29  Adrian Robert  <address@hidden>
 
        * xdisp.c (x_consider_frame_title, update_window_cursor): Remove

=== modified file 'src/xdisp.c'
--- a/src/xdisp.c       2010-03-29 23:48:44 +0000
+++ b/src/xdisp.c       2010-03-30 17:26:58 +0000
@@ -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;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]