diff options
| author | Kim F. Storm | 2003-03-21 13:52:57 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2003-03-21 13:52:57 +0000 |
| commit | b11ce3eeb6d74982bfa3970af8b9b466595170d4 (patch) | |
| tree | dc98c7d954d12af00a6d3bd5362e34d096cbd131 /src | |
| parent | 442a09ea21a189c1af729157d5d124098e440dfc (diff) | |
| download | emacs-b11ce3eeb6d74982bfa3970af8b9b466595170d4.tar.gz emacs-b11ce3eeb6d74982bfa3970af8b9b466595170d4.zip | |
(No_Cursor): Declare as None for X.
(struct mac_output): Replace member cross_cursor by hand_cursor.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xterm.h b/src/xterm.h index b8480fb59d9..b909aea8de0 100644 --- a/src/xterm.h +++ b/src/xterm.h | |||
| @@ -526,7 +526,7 @@ struct x_output | |||
| 526 | Cursor text_cursor; | 526 | Cursor text_cursor; |
| 527 | Cursor nontext_cursor; | 527 | Cursor nontext_cursor; |
| 528 | Cursor modeline_cursor; | 528 | Cursor modeline_cursor; |
| 529 | Cursor cross_cursor; | 529 | Cursor hand_cursor; |
| 530 | Cursor hourglass_cursor; | 530 | Cursor hourglass_cursor; |
| 531 | Cursor horizontal_drag_cursor; | 531 | Cursor horizontal_drag_cursor; |
| 532 | 532 | ||
| @@ -644,6 +644,8 @@ struct x_output | |||
| 644 | int focus_state; | 644 | int focus_state; |
| 645 | }; | 645 | }; |
| 646 | 646 | ||
| 647 | #define No_Cursor (None) | ||
| 648 | |||
| 647 | enum | 649 | enum |
| 648 | { | 650 | { |
| 649 | /* Values used as a bit mask, BOTH == WIDTH | HEIGHT. */ | 651 | /* Values used as a bit mask, BOTH == WIDTH | HEIGHT. */ |
| @@ -1058,7 +1060,6 @@ extern void cancel_mouse_face P_ ((struct frame *)); | |||
| 1058 | extern void x_scroll_bar_clear P_ ((struct frame *)); | 1060 | extern void x_scroll_bar_clear P_ ((struct frame *)); |
| 1059 | extern void x_start_queuing_selection_requests P_ ((Display *)); | 1061 | extern void x_start_queuing_selection_requests P_ ((Display *)); |
| 1060 | extern void x_stop_queuing_selection_requests P_ ((Display *)); | 1062 | extern void x_stop_queuing_selection_requests P_ ((Display *)); |
| 1061 | extern void x_update_cursor P_ ((struct frame *, int)); | ||
| 1062 | extern int x_text_icon P_ ((struct frame *, char *)); | 1063 | extern int x_text_icon P_ ((struct frame *, char *)); |
| 1063 | extern int x_bitmap_icon P_ ((struct frame *, Lisp_Object)); | 1064 | extern int x_bitmap_icon P_ ((struct frame *, Lisp_Object)); |
| 1064 | extern int x_catch_errors P_ ((Display *)); | 1065 | extern int x_catch_errors P_ ((Display *)); |
| @@ -1084,7 +1085,6 @@ extern void x_wm_set_icon_pixmap P_ ((struct frame *, int)); | |||
| 1084 | extern void x_wm_set_icon_position P_ ((struct frame *, int, int)); | 1085 | extern void x_wm_set_icon_position P_ ((struct frame *, int, int)); |
| 1085 | extern void x_delete_display P_ ((struct x_display_info *)); | 1086 | extern void x_delete_display P_ ((struct x_display_info *)); |
| 1086 | extern void x_initialize P_ ((void)); | 1087 | extern void x_initialize P_ ((void)); |
| 1087 | extern void x_display_cursor P_ ((struct window *, int, int, int, int, int)); | ||
| 1088 | extern unsigned long x_copy_color P_ ((struct frame *, unsigned long)); | 1088 | extern unsigned long x_copy_color P_ ((struct frame *, unsigned long)); |
| 1089 | #ifdef USE_X_TOOLKIT | 1089 | #ifdef USE_X_TOOLKIT |
| 1090 | extern XtAppContext Xt_app_con; | 1090 | extern XtAppContext Xt_app_con; |