From: Stefan Monnier Date: Mon, 12 Jun 2000 05:19:26 +0000 (+0000) Subject: (menu-bar-update-buffers, menu-bar-update-buffers): Don't quote lambda. X-Git-Tag: emacs-pretest-21.0.90~3378 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f2116cf90d6bb85ec5fac7d7edb8b1936328dcbf;p=emacs.git (menu-bar-update-buffers, menu-bar-update-buffers): Don't quote lambda. --- diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index fd77066f0b0..429da3c766c 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -1017,7 +1017,7 @@ key (or menu-item)")) "List All Buffers")) ;; Now make the actual list of items, ;; ending with the list-buffers item. - (nconc (mapcar '(lambda (pair) + (nconc (mapcar (lambda (pair) ;; This is somewhat risque, to use ;; the buffer name itself as the event ;; type to define, but it works. @@ -1040,7 +1040,7 @@ key (or menu-item)")) (frames-menu (cons 'keymap (cons "Select Frame" - (mapcar '(lambda (frame) + (mapcar (lambda (frame) (nconc (list frame (cdr (assq 'name (frame-parameters frame)))