summaryrefslogtreecommitdiff
path: root/src/xterm.h
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-01-05 07:18:50 +0000
committerRichard M. Stallman <rms@gnu.org>1996-01-05 07:18:50 +0000
commit23438ae0b900e45c1a906539c671212301bf9353 (patch)
treea1cdd63064e07bae8d4832adce758d4feb7abff4 /src/xterm.h
parent645af10cdfd402e46d6a536ef1c0c7f8bad17eac (diff)
downloademacs-23438ae0b900e45c1a906539c671212301bf9353.tar.gz
Undo previous change.
Diffstat (limited to 'src/xterm.h')
-rw-r--r--src/xterm.h8
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
{
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) \