diff options
| author | Stefan Monnier | 2000-06-12 05:19:26 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-06-12 05:19:26 +0000 |
| commit | f2116cf90d6bb85ec5fac7d7edb8b1936328dcbf (patch) | |
| tree | 618eee18d1d99c41ea2697e25b5ea44c35977105 | |
| parent | d6373ed514670fb131fef53d957f6080e0979237 (diff) | |
| download | emacs-f2116cf90d6bb85ec5fac7d7edb8b1936328dcbf.tar.gz emacs-f2116cf90d6bb85ec5fac7d7edb8b1936328dcbf.zip | |
(menu-bar-update-buffers, menu-bar-update-buffers): Don't quote lambda.
| -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)")) | |||
| 1017 | "List All Buffers")) | 1017 | "List All Buffers")) |
| 1018 | ;; Now make the actual list of items, | 1018 | ;; Now make the actual list of items, |
| 1019 | ;; ending with the list-buffers item. | 1019 | ;; ending with the list-buffers item. |
| 1020 | (nconc (mapcar '(lambda (pair) | 1020 | (nconc (mapcar (lambda (pair) |
| 1021 | ;; This is somewhat risque, to use | 1021 | ;; This is somewhat risque, to use |
| 1022 | ;; the buffer name itself as the event | 1022 | ;; the buffer name itself as the event |
| 1023 | ;; type to define, but it works. | 1023 | ;; type to define, but it works. |
| @@ -1040,7 +1040,7 @@ key (or menu-item)")) | |||
| 1040 | (frames-menu | 1040 | (frames-menu |
| 1041 | (cons 'keymap | 1041 | (cons 'keymap |
| 1042 | (cons "Select Frame" | 1042 | (cons "Select Frame" |
| 1043 | (mapcar '(lambda (frame) | 1043 | (mapcar (lambda (frame) |
| 1044 | (nconc (list frame | 1044 | (nconc (list frame |
| 1045 | (cdr (assq 'name | 1045 | (cdr (assq 'name |
| 1046 | (frame-parameters frame))) | 1046 | (frame-parameters frame))) |