summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/comp.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/emacs-lisp/comp.el')
-rw-r--r--lisp/emacs-lisp/comp.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index c9d1c94ec95..621bb81455d 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)))