diff options
| author | Glenn Morris | 2007-10-12 03:00:05 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-10-12 03:00:05 +0000 |
| commit | 988e29061a37fe41044f2ccbf2ed740148d64366 (patch) | |
| tree | ee56695f1e6e5a99c14c2cfa8785714a62726500 | |
| parent | 9b5007e73117924e4c253eb628421be5deda3f4a (diff) | |
| download | emacs-988e29061a37fe41044f2ccbf2ed740148d64366.tar.gz emacs-988e29061a37fe41044f2ccbf2ed740148d64366.zip | |
(top level): Use mapc rather than mapcar.
| -rw-r--r-- | lisp/emacs-lisp/byte-opt.el | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lisp/emacs-lisp/byte-opt.el b/lisp/emacs-lisp/byte-opt.el index fdeab460c79..94b4a957cef 100644 --- a/lisp/emacs-lisp/byte-opt.el +++ b/lisp/emacs-lisp/byte-opt.el | |||
| @@ -2007,17 +2007,17 @@ If FOR-EFFECT is non-nil, the return value is assumed to be of no importance." | |||
| 2007 | (assq 'byte-code (symbol-function 'byte-optimize-form)) | 2007 | (assq 'byte-code (symbol-function 'byte-optimize-form)) |
| 2008 | (let ((byte-optimize nil) | 2008 | (let ((byte-optimize nil) |
| 2009 | (byte-compile-warnings nil)) | 2009 | (byte-compile-warnings nil)) |
| 2010 | (mapcar (lambda (x) | 2010 | (mapc (lambda (x) |
| 2011 | (or noninteractive (message "compiling %s..." x)) | 2011 | (or noninteractive (message "compiling %s..." x)) |
| 2012 | (byte-compile x) | 2012 | (byte-compile x) |
| 2013 | (or noninteractive (message "compiling %s...done" x))) | 2013 | (or noninteractive (message "compiling %s...done" x))) |
| 2014 | '(byte-optimize-form | 2014 | '(byte-optimize-form |
| 2015 | byte-optimize-body | 2015 | byte-optimize-body |
| 2016 | byte-optimize-predicate | 2016 | byte-optimize-predicate |
| 2017 | byte-optimize-binary-predicate | 2017 | byte-optimize-binary-predicate |
| 2018 | ;; Inserted some more than necessary, to speed it up. | 2018 | ;; Inserted some more than necessary, to speed it up. |
| 2019 | byte-optimize-form-code-walker | 2019 | byte-optimize-form-code-walker |
| 2020 | byte-optimize-lapcode)))) | 2020 | byte-optimize-lapcode)))) |
| 2021 | nil) | 2021 | nil) |
| 2022 | 2022 | ||
| 2023 | ;; arch-tag: 0f14076b-737e-4bef-aae6-908826ec1ff1 | 2023 | ;; arch-tag: 0f14076b-737e-4bef-aae6-908826ec1ff1 |