From: Kim F. Storm Date: Fri, 21 Mar 2003 13:52:57 +0000 (+0000) Subject: (No_Cursor): Declare as None for X. X-Git-Tag: ttn-vms-21-2-B4~10810 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b11ce3eeb6d74982bfa3970af8b9b466595170d4;p=emacs.git (No_Cursor): Declare as None for X. (struct mac_output): Replace member cross_cursor by hand_cursor. --- 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 Cursor text_cursor; Cursor nontext_cursor; Cursor modeline_cursor; - Cursor cross_cursor; + Cursor hand_cursor; Cursor hourglass_cursor; Cursor horizontal_drag_cursor; @@ -644,6 +644,8 @@ struct x_output int focus_state; }; +#define No_Cursor (None) + enum { /* Values used as a bit mask, BOTH == WIDTH | HEIGHT. */ @@ -1058,7 +1060,6 @@ extern void cancel_mouse_face P_ ((struct frame *)); extern void x_scroll_bar_clear P_ ((struct frame *)); extern void x_start_queuing_selection_requests P_ ((Display *)); extern void x_stop_queuing_selection_requests P_ ((Display *)); -extern void x_update_cursor P_ ((struct frame *, int)); extern int x_text_icon P_ ((struct frame *, char *)); extern int x_bitmap_icon P_ ((struct frame *, Lisp_Object)); extern int x_catch_errors P_ ((Display *)); @@ -1084,7 +1085,6 @@ extern void x_wm_set_icon_pixmap P_ ((struct frame *, int)); extern void x_wm_set_icon_position P_ ((struct frame *, int, int)); extern void x_delete_display P_ ((struct x_display_info *)); extern void x_initialize P_ ((void)); -extern void x_display_cursor P_ ((struct window *, int, int, int, int, int)); extern unsigned long x_copy_color P_ ((struct frame *, unsigned long)); #ifdef USE_X_TOOLKIT extern XtAppContext Xt_app_con;