From: Richard M. Stallman Date: Sun, 3 Apr 1994 19:43:01 +0000 (+0000) Subject: (Fx_popup_dialog): If POSITION is t, use selected frame. X-Git-Tag: emacs-19.34~9196 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5a7d50bac09205dc9929c921e2f5a11cdffd43ed;p=emacs.git (Fx_popup_dialog): If POSITION is t, use selected frame. --- 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)) {