mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-06 23:51:24 -08:00
Undo previous change.
This commit is contained in:
parent
29565a8722
commit
beaff27bd6
1 changed files with 5 additions and 3 deletions
|
|
@ -708,15 +708,17 @@ struct selection_input_event
|
|||
{
|
||||
int kind;
|
||||
Display *display;
|
||||
Window requester;
|
||||
/* We spell it with an "o" here because X does. */
|
||||
Window requestor;
|
||||
Atom selection, target, property;
|
||||
Time time;
|
||||
};
|
||||
|
||||
#define SELECTION_EVENT_DISPLAY(eventp) \
|
||||
(((struct selection_input_event *) (eventp))->display)
|
||||
#define SELECTION_EVENT_REQUESTER(eventp) \
|
||||
(((struct selection_input_event *) (eventp))->requester)
|
||||
/* We spell it with an "o" here because X does. */
|
||||
#define SELECTION_EVENT_REQUESTOR(eventp) \
|
||||
(((struct selection_input_event *) (eventp))->requestor)
|
||||
#define SELECTION_EVENT_SELECTION(eventp) \
|
||||
(((struct selection_input_event *) (eventp))->selection)
|
||||
#define SELECTION_EVENT_TARGET(eventp) \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue