]> git.eshelyaron.com Git - emacs.git/commitdiff
Clarify docstring of package-native-compile
authorStefan Kangas <stefan@marxist.se>
Sun, 9 Jan 2022 02:15:34 +0000 (03:15 +0100)
committerStefan Kangas <stefan@marxist.se>
Sun, 9 Jan 2022 02:18:38 +0000 (03:18 +0100)
* lisp/emacs-lisp/package.el (package-native-compile): Clarify
docstring.

lisp/emacs-lisp/package.el

index 8fc54945d615414792ace68881e4758b3dc6d9ed..1387439f0ab80dc6d2f86daddf376ccefa023aef 100644 (file)
@@ -397,7 +397,13 @@ a sane initial value."
   :type '(repeat symbol))
 
 (defcustom package-native-compile nil
-  "Non-nil means to native compile packages on installation."
+  "Non-nil means to native compile packages after installing them.
+This controls ahead-of-time compilation.  If this option is nil,
+packages are normally compiled after they have been loaded for
+the first time.
+
+This option does not have any effect if Emacs was not built with
+native compilation support."
   :type '(boolean)
   :risky t
   :version "28.1")