diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2019-11-12 08:39:18 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2019-11-12 08:39:18 -0500 |
commit | 6eaf62df205569f234160e7035dd7116af57810e (patch) | |
tree | e050e24e16e1c6f37afe0e5a441799fa38bf2219 /lisp/emacs-lisp/easymenu.el | |
parent | 555f5f78f8f3de71431774fdabbabbcec7242727 (diff) | |
download | emacs-6eaf62df205569f234160e7035dd7116af57810e.tar.gz emacs-6eaf62df205569f234160e7035dd7116af57810e.tar.bz2 emacs-6eaf62df205569f234160e7035dd7116af57810e.zip |
* lisp/emacs-lisp/easymenu.el (easy-menu-make-symbol): Fix last change
Diffstat (limited to 'lisp/emacs-lisp/easymenu.el')
-rw-r--r-- | lisp/emacs-lisp/easymenu.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/easymenu.el b/lisp/emacs-lisp/easymenu.el index 292d50b91ab..15b8bef4282 100644 --- a/lisp/emacs-lisp/easymenu.el +++ b/lisp/emacs-lisp/easymenu.el @@ -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 |