emacs-diffs
[Top][All Lists]
Advanced

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

master 85b61c0 06/16: Rename comp-bootstrap-deny-list → native-comp-boo


From: Andrea Corallo
Subject: master 85b61c0 06/16: Rename comp-bootstrap-deny-list → native-comp-bootstrap-deny-list
Date: Thu, 6 May 2021 11:16:23 -0400 (EDT)

branch: master
commit 85b61c0c58c5198715e5b7bfff9d7319a6ab1a2c
Author: Andrea Corallo <akrl@sdf.org>
Commit: Andrea Corallo <akrl@sdf.org>

    Rename comp-bootstrap-deny-list → native-comp-bootstrap-deny-list
    
    * lisp/emacs-lisp/comp.el (native-comp-bootstrap-deny-list)
    (batch-native-compile): Rename comp-bootstrap-deny-list →
    native-comp-bootstrap-deny-list.
---
 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 c9d1c94..621bb81 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -90,7 +90,7 @@ Files whose names match any regexp are excluded from native 
compilation."
   :type '(repeat regexp)
   :version "28.1")
 
-(defcustom comp-bootstrap-deny-list
+(defcustom native-comp-bootstrap-deny-list
   '()
   "List of regexps to exclude files from native compilation during bootstrap.
 Files whose names match any regexp are excluded from native compilation
@@ -4159,7 +4159,7 @@ Native compilation equivalent to `batch-byte-compile'."
   (cl-loop for file in command-line-args-left
            if (or (null byte-native-for-bootstrap)
                   (cl-notany (lambda (re) (string-match re file))
-                             comp-bootstrap-deny-list))
+                             native-comp-bootstrap-deny-list))
            do (comp--native-compile file)
            else
            do (byte-compile-file file)))



reply via email to

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