Mercurial > emacs
changeset 29586:7968411f22fa
(menu-bar-update-buffers, menu-bar-update-buffers): Don't quote lambda.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Mon, 12 Jun 2000 05:19:26 +0000 |
parents | d3e3a9663705 |
children | bcdfb27c5ea4 |
files | lisp/menu-bar.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/menu-bar.el Mon Jun 12 05:17:53 2000 +0000 +++ b/lisp/menu-bar.el Mon Jun 12 05:19:26 2000 +0000 @@ -1017,7 +1017,7 @@ "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 @@ (frames-menu (cons 'keymap (cons "Select Frame" - (mapcar '(lambda (frame) + (mapcar (lambda (frame) (nconc (list frame (cdr (assq 'name (frame-parameters frame)))