emacs: fix the detection of native compilation for Emacs 29

In Emacs 29, feature comp does not load early enough.  We use
native-compile instead.  This is also what Emacs uses[1].

[1]: https://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/startup.el?id=3685387e609753293c4518be75e77c659c3b2d8d#n586
This commit is contained in:
Lin Jian 2023-08-26 14:25:11 +08:00 committed by Anderson Torres
parent 6505082e72
commit 2d324ed8f9

View File

@ -40,7 +40,7 @@ least specific (the system profile)"
(mapconcat 'identity new-env-list ":"))))))
;;; Set up native-comp load path.
(when (featurep 'comp)
(when (featurep 'native-compile)
;; Append native-comp subdirectories from `NIX_PROFILES'.
(setq native-comp-eln-load-path
(append (mapcar (lambda (profile-dir)