diff options
| author | Stefan Kangas | 2022-01-09 03:15:34 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2022-01-09 03:18:38 +0100 |
| commit | 30f1bdb41faa705fed497126322547c2d8111f36 (patch) | |
| tree | 85a3822e51b028c4f3c5cacdec2a9891db2fa267 | |
| parent | c54fda643d4407aed729a6a84fdd28c69373580b (diff) | |
| download | emacs-30f1bdb41faa705fed497126322547c2d8111f36.tar.gz emacs-30f1bdb41faa705fed497126322547c2d8111f36.zip | |
Clarify docstring of package-native-compile
* lisp/emacs-lisp/package.el (package-native-compile): Clarify
docstring.
| -rw-r--r-- | lisp/emacs-lisp/package.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 8fc54945d61..1387439f0ab 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -397,7 +397,13 @@ a sane initial value." | |||
| 397 | :type '(repeat symbol)) | 397 | :type '(repeat symbol)) |
| 398 | 398 | ||
| 399 | (defcustom package-native-compile nil | 399 | (defcustom package-native-compile nil |
| 400 | "Non-nil means to native compile packages on installation." | 400 | "Non-nil means to native compile packages after installing them. |
| 401 | This controls ahead-of-time compilation. If this option is nil, | ||
| 402 | packages are normally compiled after they have been loaded for | ||
| 403 | the first time. | ||
| 404 | |||
| 405 | This option does not have any effect if Emacs was not built with | ||
| 406 | native compilation support." | ||
| 401 | :type '(boolean) | 407 | :type '(boolean) |
| 402 | :risky t | 408 | :risky t |
| 403 | :version "28.1") | 409 | :version "28.1") |