From f2116cf90d6bb85ec5fac7d7edb8b1936328dcbf Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 12 Jun 2000 05:19:26 +0000 Subject: [PATCH] (menu-bar-update-buffers, menu-bar-update-buffers): Don't quote lambda. --- lisp/menu-bar.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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))) -- 2.11.4.GIT