diff options
author | Andreas Schwab <schwab@suse.de> | 1997-11-25 13:48:10 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1997-11-25 13:48:10 +0000 |
commit | 44d46531541eb8b97bb005b1693975d4da5b3207 (patch) | |
tree | 567953b7c34b4cc45f3e4dd32c8bc45e62565b4d /src/xselect.c | |
parent | 4c571d09039939eb7493e9836300caf0f066e7a1 (diff) | |
download | emacs-44d46531541eb8b97bb005b1693975d4da5b3207.tar.gz |
(Fx_disown_selection_internal): Fix type of EVENT.
Diffstat (limited to 'src/xselect.c')
-rw-r--r-- | src/xselect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xselect.c b/src/xselect.c index 7d43f07071d..caa8e6a55a2 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -1915,7 +1915,7 @@ Disowning it means there is no such selection.") { Time timestamp; Atom selection_atom; - XSelectionClearEvent event; + struct selection_input_event event; Display *display; struct x_display_info *dpyinfo; @@ -1945,7 +1945,7 @@ Disowning it means there is no such selection.") SELECTION_EVENT_DISPLAY (&event) = display; SELECTION_EVENT_SELECTION (&event) = selection_atom; SELECTION_EVENT_TIME (&event) = timestamp; - x_handle_selection_clear (&event); + x_handle_selection_clear ((struct input_event *) &event); return Qt; } |