aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2001-06-02 19:19:05 +0000
committerStefan Monnier2001-06-02 19:19:05 +0000
commit1b85dc1cc5600d3523a5f262d5330d8d5a6aa06d (patch)
tree3fb43f9bc164dd3acbbeab20b7966bece7408786
parent0825052e0909694071f76a5c7de994b675a82b7e (diff)
downloademacs-1b85dc1cc5600d3523a5f262d5330d8d5a6aa06d.tar.gz
emacs-1b85dc1cc5600d3523a5f262d5330d8d5a6aa06d.zip
(clear_mouse_face): Reset dpyinfo->mouse_face_overlay as
well otherwise note_mouse_highlight might optimize away highlighting if we pass over that same overlay again.
-rw-r--r--src/ChangeLog6
-rw-r--r--src/xterm.c1
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7a369bd581e..6bd26813216 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12001-06-02 Stefan Monnier <monnier@cs.yale.edu>
2
3 * xterm.c (clear_mouse_face): Reset dpyinfo->mouse_face_overlay as
4 well otherwise note_mouse_highlight might optimize away highlighting
5 if we pass over that same overlay again.
6
12001-06-02 Eli Zaretskii <eliz@is.elta.co.il> 72001-06-02 Eli Zaretskii <eliz@is.elta.co.il>
2 8
3 * lread.c (Fload): Document that the argument is run via 9 * lread.c (Fload): Document that the argument is run via
diff --git a/src/xterm.c b/src/xterm.c
index f6f3f599798..1715b08c6d0 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -7696,6 +7696,7 @@ clear_mouse_face (dpyinfo)
7696 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1; 7696 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
7697 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1; 7697 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
7698 dpyinfo->mouse_face_window = Qnil; 7698 dpyinfo->mouse_face_window = Qnil;
7699 dpyinfo->mouse_face_overlay = Qnil;
7699 return cleared; 7700 return cleared;
7700} 7701}
7701 7702