From a9e6f88831622084220387d454b2d3d91ab66c39 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 9 Jan 2021 03:10:43 -0500 Subject: [PATCH] Remove evil-collection-vterm from comp blacklist Issue was fixed upstream in native-comp branch. --- core/core.el | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/core/core.el b/core/core.el index 7fd29cbf7..db5ef74ca 100644 --- a/core/core.el +++ b/core/core.el @@ -158,11 +158,10 @@ users).") ;; HACK Disable native-compilation for some troublesome packages (mapc (doom-partial #'add-to-list 'comp-deferred-compilation-deny-list) (let ((local-dir-re (concat "\\`" (regexp-quote doom-local-dir)))) - (list (concat local-dir-re ".*/evil-collection-vterm\\.el\\'") - ;; https://github.com/nnicandro/emacs-jupyter/issues/297 - (concat local-dir-re ".*/jupyter-channel\\.el\\'") + (list (concat "\\`" (regexp-quote doom-autoloads-file) "\\'") (concat local-dir-re ".*/with-editor\\.el\\'") - (concat "\\`" (regexp-quote doom-autoloads-file) "\\'")))) + ;; https://github.com/nnicandro/emacs-jupyter/issues/297 + (concat local-dir-re ".*/jupyter-channel\\.el\\'")))) ;; Default to using all cores, rather than half of them, since we compile ;; things ahead-of-time in a non-interactive session. (defadvice! doom--comp-use-all-cores-a ()