aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMasatake YAMATO2005-05-27 16:59:55 +0000
committerMasatake YAMATO2005-05-27 16:59:55 +0000
commitedfaeb4ee9abb4bed5d8fe723cc123c3299252e8 (patch)
tree4e4d64a1fc4094a43b546c961cacce5bdbcc4d6d /src
parent83040cb0999eb9027c2517c78bd9166505a6ea8a (diff)
downloademacs-edfaeb4ee9abb4bed5d8fe723cc123c3299252e8.tar.gz
emacs-edfaeb4ee9abb4bed5d8fe723cc123c3299252e8.zip
* xdisp.c (note_mode_line_or_margin_highlight): Change the
pointer to a hand cursor when hoovering over a mouse-face.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/xdisp.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index a5aee6ad56c..8c64defd5db 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12005-05-28 Masatake YAMATO <jet@gyve.org>
2
3 * xdisp.c (note_mode_line_or_margin_highlight): Change the
4 pointer to a hand cursor when hoovering over a mouse-face.
5
12005-05-27 Kenichi Handa <handa@m17n.org> 62005-05-27 Kenichi Handa <handa@m17n.org>
2 7
3 * xterm.c (x_encode_char): Call check_ccl_update in advance. 8 * xterm.c (x_encode_char): Call check_ccl_update in advance.
diff --git a/src/xdisp.c b/src/xdisp.c
index 53d881072ce..b20c4815abc 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -21443,6 +21443,9 @@ note_mode_line_or_margin_highlight (window, x, y, area)
21443 0, 0, 0, &ignore, 21443 0, 0, 0, &ignore,
21444 glyph->face_id, 1); 21444 glyph->face_id, 1);
21445 show_mouse_face (dpyinfo, DRAW_MOUSE_FACE); 21445 show_mouse_face (dpyinfo, DRAW_MOUSE_FACE);
21446
21447 if (NILP (pointer))
21448 pointer = Qhand;
21446 } 21449 }
21447 } 21450 }
21448 21451