mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-26 23:20:29 -08:00
(top level): Use mapc rather than mapcar.
This commit is contained in:
parent
9b5007e731
commit
988e29061a
1 changed files with 11 additions and 11 deletions
|
|
@ -2007,17 +2007,17 @@ If FOR-EFFECT is non-nil, the return value is assumed to be of no importance."
|
|||
(assq 'byte-code (symbol-function 'byte-optimize-form))
|
||||
(let ((byte-optimize nil)
|
||||
(byte-compile-warnings nil))
|
||||
(mapcar (lambda (x)
|
||||
(or noninteractive (message "compiling %s..." x))
|
||||
(byte-compile x)
|
||||
(or noninteractive (message "compiling %s...done" x)))
|
||||
'(byte-optimize-form
|
||||
byte-optimize-body
|
||||
byte-optimize-predicate
|
||||
byte-optimize-binary-predicate
|
||||
;; Inserted some more than necessary, to speed it up.
|
||||
byte-optimize-form-code-walker
|
||||
byte-optimize-lapcode))))
|
||||
(mapc (lambda (x)
|
||||
(or noninteractive (message "compiling %s..." x))
|
||||
(byte-compile x)
|
||||
(or noninteractive (message "compiling %s...done" x)))
|
||||
'(byte-optimize-form
|
||||
byte-optimize-body
|
||||
byte-optimize-predicate
|
||||
byte-optimize-binary-predicate
|
||||
;; Inserted some more than necessary, to speed it up.
|
||||
byte-optimize-form-code-walker
|
||||
byte-optimize-lapcode))))
|
||||
nil)
|
||||
|
||||
;; arch-tag: 0f14076b-737e-4bef-aae6-908826ec1ff1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue