diff options
| author | Eli Zaretskii | 2002-04-19 11:51:16 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2002-04-19 11:51:16 +0000 |
| commit | 6fab1572a37445f19e350547d36f181eb0ce5d18 (patch) | |
| tree | c97dfb4327b789b2065aff1589137c60583ca297 /src | |
| parent | 65c26775c68321eb926384ea00e8282eb690807e (diff) | |
| download | emacs-6fab1572a37445f19e350547d36f181eb0ce5d18.tar.gz emacs-6fab1572a37445f19e350547d36f181eb0ce5d18.zip | |
(text_cursor_kinds): New enumeration member HBAR_CURSOR.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 14 | ||||
| -rw-r--r-- | src/xterm.h | 3 |
2 files changed, 15 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d6cf26658dc..d4792689870 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,4 +1,16 @@ | |||
| 1 | 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il> | 1 | 2002-04-19 Dave Lambert <dlambert@acm.org> |
| 2 | |||
| 3 | Theses change implement an underscore-like (`hbar') cursor. | ||
| 4 | |||
| 5 | * xterm.h (text_cursor_kinds): New enumeration member HBAR_CURSOR. | ||
| 6 | |||
| 7 | * xterm.c (x_draw_bar_cursor): New argument KIND; callers changed. | ||
| 8 | Handle the `hbar' cursor type. | ||
| 9 | (x_display_and_set_cursor): Handle the HBAR_CURSOR case. | ||
| 10 | |||
| 11 | * xfns.c (Qhbar): New variable. | ||
| 12 | (syms_of_xfns): intern and staticpro it. | ||
| 13 | (x_specified_cursor_type): Handle `hbar' cursor. | ||
| 2 | 14 | ||
| 3 | * s/sol2-5.h (bcopy, bzero, bcmp): Define only if HAVE_BCOPY is | 15 | * s/sol2-5.h (bcopy, bzero, bcmp): Define only if HAVE_BCOPY is |
| 4 | not defined. | 16 | not defined. |
diff --git a/src/xterm.h b/src/xterm.h index 71d7dc01c78..a91c51ce0bf 100644 --- a/src/xterm.h +++ b/src/xterm.h | |||
| @@ -112,7 +112,8 @@ enum text_cursor_kinds | |||
| 112 | NO_CURSOR = -1, | 112 | NO_CURSOR = -1, |
| 113 | FILLED_BOX_CURSOR, | 113 | FILLED_BOX_CURSOR, |
| 114 | HOLLOW_BOX_CURSOR, | 114 | HOLLOW_BOX_CURSOR, |
| 115 | BAR_CURSOR | 115 | BAR_CURSOR, |
| 116 | HBAR_CURSOR | ||
| 116 | }; | 117 | }; |
| 117 | 118 | ||
| 118 | /* Structure recording X pixmap and reference count. | 119 | /* Structure recording X pixmap and reference count. |