]> git.eshelyaron.com Git - emacs.git/commitdiff
Rename comp-bootstrap-deny-list → native-comp-bootstrap-deny-list
authorAndrea Corallo <akrl@sdf.org>
Thu, 6 May 2021 08:19:35 +0000 (10:19 +0200)
committerAndrea Corallo <akrl@sdf.org>
Thu, 6 May 2021 15:16:07 +0000 (17:16 +0200)
* 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

index c9d1c94ec95630ec76a5267816774e31c544b51f..621bb81455d529a772de77b889d35769e7bcf062 100644 (file)
@@ -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)))