diff options
| author | Richard M. Stallman | 1994-05-23 07:39:08 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-23 07:39:08 +0000 |
| commit | f97eee516b814a964cd400aa28ad8a37513351c4 (patch) | |
| tree | 988f140659c0897b2f296305ff21b66adaa2b529 | |
| parent | d95ebf76705396637d602691dacb476afb32577e (diff) | |
| download | emacs-f97eee516b814a964cd400aa28ad8a37513351c4.tar.gz emacs-f97eee516b814a964cd400aa28ad8a37513351c4.zip | |
(popup-menu): Bind cmd with let.
| -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 328cd318bfc..a8fa759d4d2 100644 --- a/lisp/emacs-lisp/lmenu.el +++ b/lisp/emacs-lisp/lmenu.el | |||
| @@ -135,7 +135,7 @@ The syntax, more precisely: | |||
| 135 | " | 135 | " |
| 136 | (let ((menu (make-lucid-menu-keymap (car menu-desc) (cdr menu-desc))) | 136 | (let ((menu (make-lucid-menu-keymap (car menu-desc) (cdr menu-desc))) |
| 137 | (pos (mouse-pixel-position)) | 137 | (pos (mouse-pixel-position)) |
| 138 | answer) | 138 | answer cmd) |
| 139 | (while menu | 139 | (while menu |
| 140 | (setq answer (x-popup-menu (list (list (nth 1 pos) (nthcdr 2 pos)) | 140 | (setq answer (x-popup-menu (list (list (nth 1 pos) (nthcdr 2 pos)) |
| 141 | (car pos)) | 141 | (car pos)) |