aboutsummaryrefslogtreecommitdiffstats
path: root/src/xselect.c
diff options
context:
space:
mode:
authorAndreas Schwab1997-11-25 13:48:10 +0000
committerAndreas Schwab1997-11-25 13:48:10 +0000
commit44d46531541eb8b97bb005b1693975d4da5b3207 (patch)
tree567953b7c34b4cc45f3e4dd32c8bc45e62565b4d /src/xselect.c
parent4c571d09039939eb7493e9836300caf0f066e7a1 (diff)
downloademacs-44d46531541eb8b97bb005b1693975d4da5b3207.tar.gz
emacs-44d46531541eb8b97bb005b1693975d4da5b3207.zip
(Fx_disown_selection_internal): Fix type of EVENT.
Diffstat (limited to 'src/xselect.c')
-rw-r--r--src/xselect.c4
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.")
1915{ 1915{
1916 Time timestamp; 1916 Time timestamp;
1917 Atom selection_atom; 1917 Atom selection_atom;
1918 XSelectionClearEvent event; 1918 struct selection_input_event event;
1919 Display *display; 1919 Display *display;
1920 struct x_display_info *dpyinfo; 1920 struct x_display_info *dpyinfo;
1921 1921
@@ -1945,7 +1945,7 @@ Disowning it means there is no such selection.")
1945 SELECTION_EVENT_DISPLAY (&event) = display; 1945 SELECTION_EVENT_DISPLAY (&event) = display;
1946 SELECTION_EVENT_SELECTION (&event) = selection_atom; 1946 SELECTION_EVENT_SELECTION (&event) = selection_atom;
1947 SELECTION_EVENT_TIME (&event) = timestamp; 1947 SELECTION_EVENT_TIME (&event) = timestamp;
1948 x_handle_selection_clear (&event); 1948 x_handle_selection_clear ((struct input_event *) &event);
1949 1949
1950 return Qt; 1950 return Qt;
1951} 1951}