diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-05-23 04:50:18 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-05-23 04:50:18 +0000 |
commit | c15d229a41e00427831dfebb9128d10ae6e65535 (patch) | |
tree | 0056502e9941d7ba4e1a0ee7fed88b1e092e4cfd /lisp/emacs-lisp | |
parent | 9ba60df97fcb71c5b27df6dd296aa41fb1ec9ed7 (diff) | |
download | emacs-c15d229a41e00427831dfebb9128d10ae6e65535.tar.gz emacs-c15d229a41e00427831dfebb9128d10ae6e65535.tar.bz2 emacs-c15d229a41e00427831dfebb9128d10ae6e65535.zip |
(popup-menu): Use mouse-pixel-position.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lmenu.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lmenu.el b/lisp/emacs-lisp/lmenu.el index d249dcecdff..328cd318bfc 100644 --- a/lisp/emacs-lisp/lmenu.el +++ b/lisp/emacs-lisp/lmenu.el @@ -134,7 +134,7 @@ The syntax, more precisely: menu := '(' name [ menu-item | menu | text ]+ ')' " (let ((menu (make-lucid-menu-keymap (car menu-desc) (cdr menu-desc))) - (pos (mouse-position)) + (pos (mouse-pixel-position)) answer) (while menu (setq answer (x-popup-menu (list (list (nth 1 pos) (nthcdr 2 pos)) |