diff options
| author | Richard M. Stallman | 2002-04-23 19:08:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-04-23 19:08:44 +0000 |
| commit | 5d449b177c53caaf09c37c875c7494343d2b118c (patch) | |
| tree | 6b93c8e137b61940aae57d57f0815f654b832952 /src | |
| parent | 9170767df1eed4f65eed817c9703c359de9b09af (diff) | |
| download | emacs-5d449b177c53caaf09c37c875c7494343d2b118c.tar.gz emacs-5d449b177c53caaf09c37c875c7494343d2b118c.zip | |
(x_set_mouse_color): Change default for cross_cursor to XC_hand2.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/xfns.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 8a8b1ad7b3a..0c996620daa 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -12,6 +12,11 @@ | |||
| 12 | (notice_overwritten_cursor): Consider the cursor image erased if | 12 | (notice_overwritten_cursor): Consider the cursor image erased if |
| 13 | the output area intersects the cursor image in y-direction. | 13 | the output area intersects the cursor image in y-direction. |
| 14 | 14 | ||
| 15 | 2002-04-23 Simon Marshall <simon@gnu.org> | ||
| 16 | |||
| 17 | * xfns.c (x_set_mouse_color): Change default for cross_cursor | ||
| 18 | to XC_hand2. | ||
| 19 | |||
| 15 | 2002-04-23 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 20 | 2002-04-23 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 16 | 21 | ||
| 17 | * xdisp.c: Remove unused global variable | 22 | * xdisp.c: Remove unused global variable |
diff --git a/src/xfns.c b/src/xfns.c index e435d5500d9..e88421e73b0 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -1650,7 +1650,7 @@ x_set_mouse_color (f, arg, oldval) | |||
| 1650 | = XCreateFontCursor (dpy, XINT (Vx_sensitive_text_pointer_shape)); | 1650 | = XCreateFontCursor (dpy, XINT (Vx_sensitive_text_pointer_shape)); |
| 1651 | } | 1651 | } |
| 1652 | else | 1652 | else |
| 1653 | cross_cursor = XCreateFontCursor (dpy, XC_crosshair); | 1653 | cross_cursor = XCreateFontCursor (dpy, XC_hand2); |
| 1654 | 1654 | ||
| 1655 | if (!NILP (Vx_window_horizontal_drag_shape)) | 1655 | if (!NILP (Vx_window_horizontal_drag_shape)) |
| 1656 | { | 1656 | { |