From 702b4eb5d12184c88adf8e2272dee99ffc6b9824 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Tue, 16 Feb 2021 22:26:09 +0000 Subject: [PATCH] fix(native-comp): expand ignored file patterns --- early-init.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/early-init.el b/early-init.el index 4c09dcb..f419566 100644 --- a/early-init.el +++ b/early-init.el @@ -11,10 +11,10 @@ (setq comp-deferred-compilation-deny-list '("\\(?:[/\\\\]\\.dir-locals\\.el$\\)" - ;; Don't native-compile *-authloads.el files as they all seem to produce - ;; errors during native-compile. + ;; Don't native-compile *-authloads.el and *-pkg.el files as they + ;; seem to produce errors during native-compile. "\\(?:[^z-a]*-autoloads\\.el$\\)" - "\\(?:helm[/\\\\]helm-pkg\\.el$\\)")) + "\\(?:[^z-a]*-pkg\\.el$\\)")) (when (boundp 'comp-eln-load-path) (let ((eln-cache-dir (expand-file-name "cache/eln-cache/"