aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2004-04-05 21:54:43 +0000
committerKim F. Storm2004-04-05 21:54:43 +0000
commit867756d80a78707fcb32e8aae7403810cbc5ae6f (patch)
tree4c51d33d25b8d2a5895db19a7fbffd6eb8c6b7e3 /src
parent7292c311e893b6f12677bfea633cbfab5b5d16a2 (diff)
downloademacs-867756d80a78707fcb32e8aae7403810cbc5ae6f.tar.gz
emacs-867756d80a78707fcb32e8aae7403810cbc5ae6f.zip
(clear_mouse_face): Only clear mouse highlight if not hidden.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 6711eb242ce..9c0434a681d 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -19832,7 +19832,7 @@ clear_mouse_face (dpyinfo)
19832{ 19832{
19833 int cleared = 0; 19833 int cleared = 0;
19834 19834
19835 if (!NILP (dpyinfo->mouse_face_window)) 19835 if (!dpyinfo->mouse_face_hidden && !NILP (dpyinfo->mouse_face_window))
19836 { 19836 {
19837 show_mouse_face (dpyinfo, DRAW_NORMAL_TEXT); 19837 show_mouse_face (dpyinfo, DRAW_NORMAL_TEXT);
19838 cleared = 1; 19838 cleared = 1;