diff options
author | Andrea Corallo <akrl@sdf.org> | 2021-05-06 10:18:32 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2021-05-06 17:16:07 +0200 |
commit | 65952950780aacc7693d9f7ef9a80c76073e99b1 (patch) | |
tree | fb08cdff0a2c31c15848a98f8aca3306c927b446 /lisp/emacs-lisp | |
parent | 6efd7885dbae1b430b65ed2bf13d4a7dfd9d08fd (diff) | |
download | emacs-65952950780aacc7693d9f7ef9a80c76073e99b1.tar.gz emacs-65952950780aacc7693d9f7ef9a80c76073e99b1.tar.bz2 emacs-65952950780aacc7693d9f7ef9a80c76073e99b1.zip |
* Rename comp-always-compile → native-comp-always-compile
* lisp/emacs-lisp/comp.el (native-comp-always-compile)
(comp-run-async-workers): comp-always-compile →
native-comp-always-compile.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 18920020e6c..c9d1c94ec95 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -78,7 +78,7 @@ This is intended for debugging the compiler itself. :risky t :version "28.1") -(defcustom comp-always-compile nil +(defcustom native-comp-always-compile nil "Non-nil means unconditionally (re-)compile all files." :type 'boolean :version "28.1") @@ -3897,7 +3897,7 @@ display a message." do (cl-assert (string-match-p comp-valid-source-re source-file) nil "`comp-files-queue' should be \".el\" files: %s" source-file) - when (or comp-always-compile + when (or native-comp-always-compile load ; Always compile when the compilation is ; commanded for late load. (file-newer-than-file-p |