diff options
author | Andrea Corallo <akrl@sdf.org> | 2021-03-15 16:46:16 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2021-03-15 16:46:16 +0100 |
commit | 7f74ed4912d845551209a5541c8919afbe19b884 (patch) | |
tree | 8b66da71fd20ef9a8a7c032c1895e298f50e0575 /lisp/emacs-lisp | |
parent | aabda4263bc2000a69e61e93a232e71f8afedec9 (diff) | |
download | emacs-7f74ed4912d845551209a5541c8919afbe19b884.tar.gz emacs-7f74ed4912d845551209a5541c8919afbe19b884.tar.bz2 emacs-7f74ed4912d845551209a5541c8919afbe19b884.zip |
* lisp/emacs-lisp/bytecomp.el: Fix native re-compilation (bug#47161).
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 921a25b35c9..b04286c34ae 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -5423,6 +5423,7 @@ and corresponding effects." ;; (eval-when-compile (or (byte-code-function-p (symbol-function 'byte-compile-form)) + (subr-native-elisp-p (symbol-function 'byte-compile-form)) (assq 'byte-code (symbol-function 'byte-compile-form)) (let ((byte-optimize nil) ; do it fast (byte-compile-warnings nil)) |