aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xmenu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xmenu.c b/src/xmenu.c
index aa8ec70a520..4d86a6296b2 100644
--- a/src/xmenu.c
+++ b/src/xmenu.c
@@ -132,9 +132,9 @@ be the return value for that line (i.e. if it is selected).")
132 } 132 }
133 else 133 else
134 { 134 {
135 tem = EVENT_START (position); 135 tem = Fcar (Fcdr (position)); /* EVENT_START (position) */
136 window = POSN_WINDOW (tem); 136 window = Fcar (tem); /* POSN_WINDOW (tem) */
137 tem = POSN_WINDOW_POSN (tem); 137 tem = Fcar (Fcdr (Fcdr (tem))); /* POSN_WINDOW_POSN (tem) */
138 x = Fcar (tem); 138 x = Fcar (tem);
139 y = Fcdr (tem); 139 y = Fcdr (tem);
140 } 140 }