Prevent native compilation for emacs-jupyter

Something in jupyter-channel.el does not get compiled correctly and
raises void-variable jupyter-channel errors.
This commit is contained in:
Han Mertens 2020-11-17 20:48:34 +01:00
parent d21b4e643d
commit a56f58d4ab

View File

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