1
Fork 0
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:
Andrea Corallo 2020-08-05 08:47:56 +02:00
parent 12a982d978
commit dd814b0a58

View file

@ -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