comparison lisp/ChangeLog @ 5363:311f6817efc2

Remove various redundant wrapper lambdas, core lisp. 2011-03-08 Aidan Kehoe <kehoea@parhasard.net> * package-ui.el (pui-add-required-packages): * packages.el (packages-handle-package-dumped-lisps): * bytecomp-runtime.el (byte-compile-with-fboundp): * bytecomp-runtime.el (globally-declare-fboundp): * bytecomp-runtime.el (byte-compile-with-byte-compiler-warnings-suppressed): * mule/devan-util.el (devanagari-reorder-glyphs-for-composition): * mule/devan-util.el (devanagari-compose-to-one-glyph): * mule/japanese.el: * mule/japanese.el ("Japanese"): * mule/make-coding-system.el (fixed-width-generate-helper): * mule/mule-category.el (defined-category-list): * mule/mule-category.el (undefined-category-designator): Style change: remove redundant lambdas, things like (mapcar #'(lambda (pkg) (symbol-name pkg)) ...) => (mapcar #'symbol-name ...).
author Aidan Kehoe <kehoea@parhasard.net>
date Tue, 08 Mar 2011 18:12:48 +0000
parents 31475de17064
children 0f9aa4eb4bec
comparison
equal deleted inserted replaced
5362:1cfe6b84efbf 5363:311f6817efc2
1 2011-03-08 Aidan Kehoe <kehoea@parhasard.net>
2
3 * package-ui.el (pui-add-required-packages):
4 * packages.el (packages-handle-package-dumped-lisps):
5 * bytecomp-runtime.el (byte-compile-with-fboundp):
6 * bytecomp-runtime.el (globally-declare-fboundp):
7 * bytecomp-runtime.el
8 (byte-compile-with-byte-compiler-warnings-suppressed):
9 * mule/devan-util.el (devanagari-reorder-glyphs-for-composition):
10 * mule/devan-util.el (devanagari-compose-to-one-glyph):
11 * mule/japanese.el:
12 * mule/japanese.el ("Japanese"):
13 * mule/make-coding-system.el (fixed-width-generate-helper):
14 * mule/mule-category.el (defined-category-list):
15 * mule/mule-category.el (undefined-category-designator):
16 Style change: remove redundant lambdas, things like (mapcar
17 #'(lambda (pkg) (symbol-name pkg)) ...) => (mapcar #'symbol-name ...).
18
1 2011-02-16 Aidan Kehoe <kehoea@parhasard.net> 19 2011-02-16 Aidan Kehoe <kehoea@parhasard.net>
2 20
3 * bytecomp.el (byte-compile-normal-call): 21 * bytecomp.el (byte-compile-normal-call):
4 Check that the car of FORM is a symbol before examining its 22 Check that the car of FORM is a symbol before examining its
5 properties; it can be a lambda form if byte-optimize.el hasn't 23 properties; it can be a lambda form if byte-optimize.el hasn't