diff options
| author | Richard M. Stallman | 1996-01-05 07:18:50 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-01-05 07:18:50 +0000 |
| commit | beaff27bd6c07f294dddc1836e491ba4e67d6a0a (patch) | |
| tree | 332a6b655429c93ae5d2a245b77db9d461298af1 /src | |
| parent | 29565a87223a1ca2223b79227f51fc15f3c8270f (diff) | |
| download | emacs-beaff27bd6c07f294dddc1836e491ba4e67d6a0a.tar.gz emacs-beaff27bd6c07f294dddc1836e491ba4e67d6a0a.zip | |
Undo previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/xterm.h b/src/xterm.h index 14263116887..e0f59440734 100644 --- a/src/xterm.h +++ b/src/xterm.h | |||
| @@ -708,15 +708,17 @@ 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) \ |