diff options
| author | Richard M. Stallman | 1994-04-03 19:43:01 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-04-03 19:43:01 +0000 |
| commit | 5a7d50bac09205dc9929c921e2f5a11cdffd43ed (patch) | |
| tree | bb75a8a258fb65913a74e1b2318953f8355e83de /src | |
| parent | 4a44b14c12e68228dde8230eb924964acf3ba6cd (diff) | |
| download | emacs-5a7d50bac09205dc9929c921e2f5a11cdffd43ed.tar.gz emacs-5a7d50bac09205dc9929c921e2f5a11cdffd43ed.zip | |
(Fx_popup_dialog): If POSITION is t, use selected frame.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xmenu.c | 6 |
1 files changed, 1 insertions, 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.") | |||
| 873 | #endif | 873 | #endif |
| 874 | /* Decode the first argument: find the window and the coordinates. */ | 874 | /* Decode the first argument: find the window and the coordinates. */ |
| 875 | if (EQ (position, Qt)) | 875 | if (EQ (position, Qt)) |
| 876 | { | 876 | window = selected_window; |
| 877 | window = selected_window; | ||
| 878 | XFASTINT (x) = 0; | ||
| 879 | XFASTINT (y) = 0; | ||
| 880 | } | ||
| 881 | } | 877 | } |
| 882 | else if (CONSP (position)) | 878 | else if (CONSP (position)) |
| 883 | { | 879 | { |