diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-06-12 05:19:26 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-06-12 05:19:26 +0000 |
commit | f2116cf90d6bb85ec5fac7d7edb8b1936328dcbf (patch) | |
tree | 618eee18d1d99c41ea2697e25b5ea44c35977105 /lisp | |
parent | d6373ed514670fb131fef53d957f6080e0979237 (diff) | |
download | emacs-f2116cf90d6bb85ec5fac7d7edb8b1936328dcbf.tar.gz |
(menu-bar-update-buffers, menu-bar-update-buffers): Don't quote lambda.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/menu-bar.el | 4 |
1 files 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))) |