aboutsummaryrefslogtreecommitdiffstats
path: root/src/xterm.c
diff options
context:
space:
mode:
authorDan Nicolaescu2005-09-27 21:14:23 +0000
committerDan Nicolaescu2005-09-27 21:14:23 +0000
commit6c4eb4ce002d7d75d2b5de9a96a5873656f2bf16 (patch)
tree62dab3b35db4d2bd582070f57004d0548e712039 /src/xterm.c
parentb95097127197d63084c14fd6d8322f724e041776 (diff)
downloademacs-6c4eb4ce002d7d75d2b5de9a96a5873656f2bf16.tar.gz
emacs-6c4eb4ce002d7d75d2b5de9a96a5873656f2bf16.zip
(handle_one_xevent): Refer to union field to match the type
required by the function definition.
Diffstat (limited to 'src/xterm.c')
-rw-r--r--src/xterm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xterm.c b/src/xterm.c
index f02aef0bc5a..5bd38550f67 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -6750,13 +6750,13 @@ handle_one_xevent (dpyinfo, eventp, finish, hold_quit)
6750 && (int)(event.xbutton.time - ignore_next_mouse_click_timeout) > 0) 6750 && (int)(event.xbutton.time - ignore_next_mouse_click_timeout) > 0)
6751 { 6751 {
6752 ignore_next_mouse_click_timeout = 0; 6752 ignore_next_mouse_click_timeout = 0;
6753 construct_mouse_click (&inev.ie, &event, f); 6753 construct_mouse_click (&inev.ie, &event.xbutton, f);
6754 } 6754 }
6755 if (event.type == ButtonRelease) 6755 if (event.type == ButtonRelease)
6756 ignore_next_mouse_click_timeout = 0; 6756 ignore_next_mouse_click_timeout = 0;
6757 } 6757 }
6758 else 6758 else
6759 construct_mouse_click (&inev.ie, &event, f); 6759 construct_mouse_click (&inev.ie, &event.xbutton, f);
6760 } 6760 }
6761 } 6761 }
6762 } 6762 }