Mercurial > hg > xemacs-beta
comparison lisp/ChangeLog @ 5267:668c73e222fd
Change forms like (delq nil (mapcar ...)) to (mapcan ...).
lisp/ChangeLog addition:
2010-09-16 Aidan Kehoe <kehoea@parhasard.net>
* x-faces.el (x-available-font-sizes):
* specifier.el (let-specifier):
* package-ui.el (pui-add-required-packages):
* msw-faces.el (mswindows-available-font-sizes):
* modeline.el (modeline-minor-mode-menu):
* minibuf.el (minibuf-directory-files):
Replace the O2N (delq nil (mapcar (lambda (W) (and X Y)) Z)) with
the ON (mapcan (lambda (W) (and X (list Y))) Z) in these files.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Thu, 16 Sep 2010 15:06:38 +0100 |
parents | f9ec07abdbf9 |
children | 09f8ed0933c7 |
comparison
equal
deleted
inserted
replaced
5266:f9ec07abdbf9 | 5267:668c73e222fd |
---|---|
1 2010-09-16 Aidan Kehoe <kehoea@parhasard.net> | |
2 | |
3 * x-faces.el (x-available-font-sizes): | |
4 * specifier.el (let-specifier): | |
5 * package-ui.el (pui-add-required-packages): | |
6 * msw-faces.el (mswindows-available-font-sizes): | |
7 * modeline.el (modeline-minor-mode-menu): | |
8 * minibuf.el (minibuf-directory-files): | |
9 Replace the O2N (delq nil (mapcar (lambda (W) (and X Y)) Z)) with | |
10 the ON (mapcan (lambda (W) (and X (list Y))) Z) in these files. | |
11 | |
1 2010-09-16 Aidan Kehoe <kehoea@parhasard.net> | 12 2010-09-16 Aidan Kehoe <kehoea@parhasard.net> |
2 | 13 |
3 * cl-macs.el (= < > <= >=): | 14 * cl-macs.el (= < > <= >=): |
4 When these functions are handed more than two arguments, and those | 15 When these functions are handed more than two arguments, and those |
5 arguments have no side effects, transform to a series of two | 16 arguments have no side effects, transform to a series of two |