Add with-editor.el to the compilation black-list

This commit is contained in:
Andrew Whatson 2020-11-16 14:51:37 +10:00
parent aa02dc14a4
commit e9394c7c06

View file

@ -288,6 +288,7 @@ config.el instead."
(after! comp (after! comp
;; HACK Disable native-compilation for some troublesome packages ;; HACK Disable native-compilation for some troublesome packages
(dolist (entry (list (concat "\\`" (regexp-quote doom-local-dir) ".*/evil-collection-vterm\\.el\\'") (dolist (entry (list (concat "\\`" (regexp-quote doom-local-dir) ".*/evil-collection-vterm\\.el\\'")
(concat "\\`" (regexp-quote doom-local-dir) ".*/with-editor\\.el\\'")
(concat "\\`" (regexp-quote doom-autoloads-file) "'"))) (concat "\\`" (regexp-quote doom-autoloads-file) "'")))
(add-to-list 'comp-deferred-compilation-black-list entry))) (add-to-list 'comp-deferred-compilation-black-list entry)))