diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/xdisp.c | 3 |
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 @@ | |||
| 1 | 2005-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 | |||
| 1 | 2005-05-27 Kenichi Handa <handa@m17n.org> | 6 | 2005-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 | ||