emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/xdisp.c


From: Kim F . Storm
Subject: [Emacs-diffs] Changes to emacs/src/xdisp.c
Date: Mon, 08 Nov 2004 17:32:23 -0500

Index: emacs/src/xdisp.c
diff -c emacs/src/xdisp.c:1.926 emacs/src/xdisp.c:1.927
*** emacs/src/xdisp.c:1.926     Mon Nov  8 22:12:13 2004
--- emacs/src/xdisp.c   Mon Nov  8 22:25:30 2004
***************
*** 20970,20977 ****
    /* Which window is that in?  */
    window = window_from_coordinates (f, x, y, &part, 0, 0, 1);
  
!   /* If we were displaying active text in another window, clear that.  */
!   if (! EQ (window, dpyinfo->mouse_face_window))
      clear_mouse_face (dpyinfo);
  
    /* Not on a window -> return.  */
--- 20970,20979 ----
    /* Which window is that in?  */
    window = window_from_coordinates (f, x, y, &part, 0, 0, 1);
  
!   /* If we were displaying active text in another window, clear that.
!      Also clear if we move out of text area in same window.  */
!   if (! EQ (window, dpyinfo->mouse_face_window)
!       || (part != ON_TEXT && !NILP (dpyinfo->mouse_face_window)))
      clear_mouse_face (dpyinfo);
  
    /* Not on a window -> return.  */




reply via email to

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