diff options
author | Andrea Corallo <akrl@sdf.org> | 2021-05-05 17:18:07 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2021-05-05 22:27:29 +0200 |
commit | 40736357b8b811ffbe9023527db5c2a91a9c7a5a (patch) | |
tree | c30cbc0d96d541ebe451292959d9140c5480fc5d /lisp/loadup.el | |
parent | e9baa733b8cac00e008cb834abc8712c8c00beed (diff) | |
download | emacs-40736357b8b811ffbe9023527db5c2a91a9c7a5a.tar.gz emacs-40736357b8b811ffbe9023527db5c2a91a9c7a5a.tar.bz2 emacs-40736357b8b811ffbe9023527db5c2a91a9c7a5a.zip |
Rename feature `nativecomp' into `native-compile'
* test/src/comp-tests.el : Rename feature `nativecomp' into
`native-compile'.
* test/lisp/help-fns-tests.el (help-fns-test-lisp-defun): Likewise.
* src/comp.c (syms_of_comp): Likewise.
* lisp/startup.el (normal-top-level): Likewise.
* lisp/loadup.el: Likewise.
* lisp/help.el (help-function-arglist): Likewise.
* lisp/emacs-lisp/package.el (package--native-compile-async)
(package--delete-directory): Likewise.
* lisp/emacs-lisp/nadvice.el (advice--add-function): Likewise.
* lisp/emacs-lisp/comp.el (comp-ensure-native-compiler): Likewise.
* lisp/emacs-lisp/advice.el (ad-add-advice): Likewise.
Diffstat (limited to 'lisp/loadup.el')
-rw-r--r-- | lisp/loadup.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el index c82d08133cf..158c02eceaa 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -449,7 +449,7 @@ lost after dumping"))) ;; At this point, we're ready to resume undo recording for scratch. (buffer-enable-undo "*scratch*") -(when (featurep 'nativecomp) +(when (featurep 'native-compile) ;; Fix the compilation unit filename to have it working when ;; installed or if the source directory got moved. This is set to be ;; a pair in the form of: @@ -521,7 +521,7 @@ lost after dumping"))) ((equal dump-mode "bootstrap") "emacs") ((equal dump-mode "pbootstrap") "bootstrap-emacs.pdmp") (t (error "unrecognized dump mode %s" dump-mode))))) - (when (and (featurep 'nativecomp) + (when (and (featurep 'native-compile) (equal dump-mode "pdump")) ;; Don't enable this before bootstrap is completed, as the ;; compiler infrastructure may not be usable yet. |