* lisp/emacs-lisp/comp.el (native-comp-bootstrap-deny-list)
(batch-native-compile): Rename comp-bootstrap-deny-list →
native-comp-bootstrap-deny-list.
: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
(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)))