aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-05-23 07:39:08 +0000
committerRichard M. Stallman1994-05-23 07:39:08 +0000
commitf97eee516b814a964cd400aa28ad8a37513351c4 (patch)
tree988f140659c0897b2f296305ff21b66adaa2b529
parentd95ebf76705396637d602691dacb476afb32577e (diff)
downloademacs-f97eee516b814a964cd400aa28ad8a37513351c4.tar.gz
emacs-f97eee516b814a964cd400aa28ad8a37513351c4.zip
(popup-menu): Bind cmd with let.
-rw-r--r--lisp/emacs-lisp/lmenu.el2
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))