]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/easymenu.el (easy-menu-make-symbol): Fix last change
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 12 Nov 2019 13:39:18 +0000 (08:39 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 12 Nov 2019 13:39:18 +0000 (08:39 -0500)
lisp/emacs-lisp/easymenu.el

index 292d50b91ab4d4d582844ea681e017eeed64c8a2..15b8bef42822fbc029a4b1fb318384ed8eba385c 100644 (file)
@@ -475,7 +475,7 @@ When non-nil, NOEXP indicates that CALLBACK cannot be an expression
                   ;; `functionp' is probably not needed.
                   (functionp callback) noexp)
               callback
-           (lambda () (interactive) callback)))
+           (eval `(lambda () (interactive) ,callback) t)))
     command))
 
 ;;;###autoload