From fcb9ffc8ae2c2f01b124a32fd776b5ab11033d70 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Sat, 29 Aug 1992 03:33:12 +0000 Subject: [PATCH] * xselect.c: Use the FRAME_X_WINDOW macro, for readability. --- src/xselect.c.old | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xselect.c.old b/src/xselect.c.old index 7123759433..81cdd755e8 100644 --- a/src/xselect.c.old +++ b/src/xselect.c.old @@ -127,7 +127,7 @@ own_selection (selection_type, time) || ((EQ (selection_type, Qclipboard)) && !NILP (Vx_clipboard_value))) return 1; - selecting_window = selected_frame->display.x->window_desc; + selecting_window = FRAME_X_WINDOW (selected_frame); XSetSelectionOwner (x_current_display, selection_type, selecting_window, time); owner_window = XGetSelectionOwner (x_current_display, selection_type); @@ -550,7 +550,7 @@ get_selection_value (type) BLOCK_INPUT; requestor_time = last_event_timestamp; - requestor_window = selected_frame->display.x->window_desc; + requestor_window = FRAME_X_WINDOW (selected_frame); XConvertSelection (x_current_display, type, XA_STRING, Xatom_emacs_selection, requestor_window, requestor_time); XIfEvent (x_current_display, -- 2.39.2