]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/easymenu.el: Don't quote lambdas
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 7 Nov 2019 22:08:51 +0000 (17:08 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 7 Nov 2019 22:09:16 +0000 (17:09 -0500)
(easy-menu-do-define, easy-menu-make-symbol): Replace `(lambda ..)
with a closure.

lisp/emacs-lisp/easymenu.el

index f274f62164fe1a3cf4106e1e3ad1883829e2c627..292d50b91ab4d4d582844ea681e017eeed64c8a2 100644 (file)
@@ -183,17 +183,17 @@ This is expected to be bound to a mouse event."
     (when symbol
       (set symbol keymap)
       (defalias symbol
-       `(lambda (event) ,doc (interactive "@e")
+       (lambda (event) (:documentation doc) (interactive "@e")
           ;; FIXME: XEmacs uses popup-menu which calls the binding
           ;; while x-popup-menu only returns the selection.
           (x-popup-menu event
-                        (or (and (symbolp ,symbol)
+                        (or (and (symbolp symbol)
                                  (funcall
-                                  (or (plist-get (get ,symbol 'menu-prop)
+                                  (or (plist-get (get symbol 'menu-prop)
                                                  :filter)
                                       'identity)
-                                  (symbol-function ,symbol)))
-                            ,symbol)))))
+                                  (symbol-function symbol)))
+                            symbol)))))
     (dolist (map (if (keymapp maps) (list maps) maps))
       (define-key map
         (vector 'menu-bar (easy-menu-intern (car menu)))
@@ -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)))
+           (lambda () (interactive) callback)))
     command))
 
 ;;;###autoload