emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 6595295 05/16: * Rename comp-always-compile → native-comp-always


From: Andrea Corallo
Subject: master 6595295 05/16: * Rename comp-always-compile → native-comp-always-compile
Date: Thu, 6 May 2021 11:16:23 -0400 (EDT)

branch: master
commit 65952950780aacc7693d9f7ef9a80c76073e99b1
Author: Andrea Corallo <akrl@sdf.org>
Commit: Andrea Corallo <akrl@sdf.org>

    * 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.
---
 lisp/emacs-lisp/comp.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 1892002..c9d1c94 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]