comparison src/xterm.h @ 13939:99b3412dc4e7

(SELECTION_EVENT_REQUESTER): Renamed from SELECTION_EVENT_REQUESTOR. (struct selection_input_event): Renamed member `requester' from `requestor'.
author Karl Heuer <kwzh@gnu.org>
date Thu, 04 Jan 1996 22:56:39 +0000
parents be2b3be07978
children 33b3923c36b9
comparison
equal deleted inserted replaced
13938:3e0b6a3707bd 13939:99b3412dc4e7
706 this structure really describes the contents. */ 706 this structure really describes the contents. */
707 struct selection_input_event 707 struct selection_input_event
708 { 708 {
709 int kind; 709 int kind;
710 Display *display; 710 Display *display;
711 Window requestor; 711 Window requester;
712 Atom selection, target, property; 712 Atom selection, target, property;
713 Time time; 713 Time time;
714 }; 714 };
715 715
716 #define SELECTION_EVENT_DISPLAY(eventp) \ 716 #define SELECTION_EVENT_DISPLAY(eventp) \
717 (((struct selection_input_event *) (eventp))->display) 717 (((struct selection_input_event *) (eventp))->display)
718 #define SELECTION_EVENT_REQUESTOR(eventp) \ 718 #define SELECTION_EVENT_REQUESTER(eventp) \
719 (((struct selection_input_event *) (eventp))->requestor) 719 (((struct selection_input_event *) (eventp))->requester)
720 #define SELECTION_EVENT_SELECTION(eventp) \ 720 #define SELECTION_EVENT_SELECTION(eventp) \
721 (((struct selection_input_event *) (eventp))->selection) 721 (((struct selection_input_event *) (eventp))->selection)
722 #define SELECTION_EVENT_TARGET(eventp) \ 722 #define SELECTION_EVENT_TARGET(eventp) \
723 (((struct selection_input_event *) (eventp))->target) 723 (((struct selection_input_event *) (eventp))->target)
724 #define SELECTION_EVENT_PROPERTY(eventp) \ 724 #define SELECTION_EVENT_PROPERTY(eventp) \