comparison src/xterm.h @ 14030:33b3923c36b9

Undo previous change.
author Richard M. Stallman <rms@gnu.org>
date Fri, 05 Jan 1996 07:18:50 +0000
parents 99b3412dc4e7
children 519566ee8a29
comparison
equal deleted inserted replaced
14029:8812f5ef65db 14030:33b3923c36b9
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 requester; 711 /* We spell it with an "o" here because X does. */
712 Window requestor;
712 Atom selection, target, property; 713 Atom selection, target, property;
713 Time time; 714 Time time;
714 }; 715 };
715 716
716 #define SELECTION_EVENT_DISPLAY(eventp) \ 717 #define SELECTION_EVENT_DISPLAY(eventp) \
717 (((struct selection_input_event *) (eventp))->display) 718 (((struct selection_input_event *) (eventp))->display)
718 #define SELECTION_EVENT_REQUESTER(eventp) \ 719 /* We spell it with an "o" here because X does. */
719 (((struct selection_input_event *) (eventp))->requester) 720 #define SELECTION_EVENT_REQUESTOR(eventp) \
721 (((struct selection_input_event *) (eventp))->requestor)
720 #define SELECTION_EVENT_SELECTION(eventp) \ 722 #define SELECTION_EVENT_SELECTION(eventp) \
721 (((struct selection_input_event *) (eventp))->selection) 723 (((struct selection_input_event *) (eventp))->selection)
722 #define SELECTION_EVENT_TARGET(eventp) \ 724 #define SELECTION_EVENT_TARGET(eventp) \
723 (((struct selection_input_event *) (eventp))->target) 725 (((struct selection_input_event *) (eventp))->target)
724 #define SELECTION_EVENT_PROPERTY(eventp) \ 726 #define SELECTION_EVENT_PROPERTY(eventp) \