mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-12 10:44:12 -08:00
* xselect.c: Use the FRAME_X_WINDOW macro, for readability.
This commit is contained in:
parent
c118dd0617
commit
fcb9ffc8ae
1 changed files with 2 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue