(menu-bar-update-buffers, menu-bar-update-buffers): Don't quote lambda.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 12 Jun 2000 05:19:26 +0000 (05:19 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 12 Jun 2000 05:19:26 +0000 (05:19 +0000)
lisp/menu-bar.el

index fd77066..429da3c 100644 (file)
@@ -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)))