Variable: native-comp-jit-compilation-deny-list
native-comp-jit-compilation-deny-list is a customizable variable
defined in comp.el.gz.
Value
nil
Documentation
List of regexps to exclude matching files from deferred native compilation.
Files whose names match any regexp are excluded from native compilation.
This variable was added, or its default value changed, in Emacs 28.1.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defcustom native-comp-jit-compilation-deny-list
'()
"List of regexps to exclude matching files from deferred native compilation.
Files whose names match any regexp are excluded from native compilation."
:type '(repeat regexp)
:version "28.1")