From a56f58d4ab00fde493e6f01a3b18b7fd880ccb63 Mon Sep 17 00:00:00 2001 From: Han Mertens Date: Tue, 17 Nov 2020 20:48:34 +0100 Subject: [PATCH] Prevent native compilation for emacs-jupyter Something in jupyter-channel.el does not get compiled correctly and raises void-variable jupyter-channel errors. --- core/core.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/core.el b/core/core.el index 31bd7ece2..5f4b6c20b 100644 --- a/core/core.el +++ b/core/core.el @@ -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)))