Mercurial > emacs
changeset 20350:fb6a03e51808
(Fx_disown_selection_internal): Fix type of EVENT.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Tue, 25 Nov 1997 13:48:10 +0000 |
parents | 6ab8801244c2 |
children | f69eb2ab4f0f |
files | src/xselect.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xselect.c Tue Nov 25 13:44:34 1997 +0000 +++ b/src/xselect.c Tue Nov 25 13:48:10 1997 +0000 @@ -1915,7 +1915,7 @@ { Time timestamp; Atom selection_atom; - XSelectionClearEvent event; + struct selection_input_event event; Display *display; struct x_display_info *dpyinfo; @@ -1945,7 +1945,7 @@ 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; }