diff options
| author | Stefan Monnier | 2001-06-02 19:19:05 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-06-02 19:19:05 +0000 |
| commit | 1b85dc1cc5600d3523a5f262d5330d8d5a6aa06d (patch) | |
| tree | 3fb43f9bc164dd3acbbeab20b7966bece7408786 /src | |
| parent | 0825052e0909694071f76a5c7de994b675a82b7e (diff) | |
| download | emacs-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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/xterm.c | 1 |
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 @@ | |||
| 1 | 2001-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 | |||
| 1 | 2001-06-02 Eli Zaretskii <eliz@is.elta.co.il> | 7 | 2001-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 | ||