diff options
author | Kim F. Storm <storm@cua.dk> | 2002-08-30 12:02:32 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2002-08-30 12:02:32 +0000 |
commit | bd59ac2c02356237441a2a9f1d668337a3964bc5 (patch) | |
tree | c5db34ce775a5a91e43b01b8a0a485452ac6ddc6 /src/macterm.h | |
parent | 668e2d326015e004cc1a7ca0698f6d381b6ff3e8 (diff) | |
download | emacs-bd59ac2c02356237441a2a9f1d668337a3964bc5.tar.gz |
(enum text_cursor_kinds): Removed.
(struct output_mac) <current_cursor, desired_cursor, cursor_width>
<blink_off_cursor, blink_off_cursor_width>: Members removed.
(FRAME_DESIRED_CURSOR): Macro removed.
Diffstat (limited to 'src/macterm.h')
-rw-r--r-- | src/macterm.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/macterm.h b/src/macterm.h index 578a6ec2a4f..c5d3e174120 100644 --- a/src/macterm.h +++ b/src/macterm.h @@ -42,13 +42,6 @@ Boston, MA 02111-1307, USA. */ #define FONT_MAX_WIDTH(f) FONT_WIDTH(f) /* fix later */ -enum text_cursor_kinds { - NO_CURSOR = -1, - FILLED_BOX_CURSOR, - HOLLOW_BOX_CURSOR, - BAR_CURSOR -}; - /* Structure recording bitmaps and reference count. If REFCOUNT is 0 then this record is free to be reused. */ @@ -353,17 +346,6 @@ struct mac_output { #endif - /* What kind of text cursor is drawn in this window right now? - (If there is no cursor (phys_cursor_x < 0), then this means nothing.) */ - enum text_cursor_kinds current_cursor; - - /* What kind of text cursor should we draw in the future? - This should always be filled_box_cursor or bar_cursor. */ - enum text_cursor_kinds desired_cursor; - - /* Width of bar cursor (if we are using that). */ - int cursor_width; - #if 0 DWORD dwStyle; #endif @@ -452,8 +434,6 @@ typedef struct mac_output mac_output; #define PIXEL_WIDTH(f) ((f)->output_data.mac->pixel_width) #define PIXEL_HEIGHT(f) ((f)->output_data.mac->pixel_height) -#define FRAME_DESIRED_CURSOR(f) ((f)->output_data.mac->desired_cursor) - /* Value is the smallest width of any character in any font on frame F. */ #define FRAME_SMALLEST_CHAR_WIDTH(F) \ |