mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-30 09:00:31 -08:00
* lisp/emacs-lisp/bytecomp.el: Guard against double native compilation.
This commit is contained in:
parent
12a982d978
commit
dd814b0a58
1 changed files with 4 additions and 3 deletions
|
|
@ -5269,9 +5269,10 @@ and corresponding effects."
|
||||||
(let ((byte-optimize nil) ; do it fast
|
(let ((byte-optimize nil) ; do it fast
|
||||||
(byte-compile-warnings nil))
|
(byte-compile-warnings nil))
|
||||||
(mapc (lambda (x)
|
(mapc (lambda (x)
|
||||||
(or noninteractive (message "compiling %s..." x))
|
(unless (subr-native-elisp-p x)
|
||||||
(byte-compile x)
|
(or noninteractive (message "compiling %s..." x))
|
||||||
(or noninteractive (message "compiling %s...done" x)))
|
(byte-compile x)
|
||||||
|
(or noninteractive (message "compiling %s...done" x))))
|
||||||
'(byte-compile-normal-call
|
'(byte-compile-normal-call
|
||||||
byte-compile-form
|
byte-compile-form
|
||||||
byte-compile-body
|
byte-compile-body
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue