From 5a7d50bac09205dc9929c921e2f5a11cdffd43ed Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 3 Apr 1994 19:43:01 +0000 Subject: [PATCH] (Fx_popup_dialog): If POSITION is t, use selected frame. --- src/xmenu.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/xmenu.c b/src/xmenu.c index 757fa092de4..fbd9730e903 100644 --- a/src/xmenu.c +++ b/src/xmenu.c @@ -873,11 +873,7 @@ The return value is VALUE from the chosen item.") #endif /* Decode the first argument: find the window and the coordinates. */ if (EQ (position, Qt)) - { - window = selected_window; - XFASTINT (x) = 0; - XFASTINT (y) = 0; - } + window = selected_window; } else if (CONSP (position)) { -- 2.39.5