I am trying to prevent emacs-jupyter
package from native compilation. There is a known bug that breaks the package when native compiled. [1] I can manually delete the eln
files in eln-cache
dir and package starts working. I tried the suggested solutions. Apperently this variable no longer exists,
(setq comp-deferred-compilation-deny-list (list "jupyter"))
how ever this variable does exists,
(add-to-list 'native-comp-deferred-compilation-deny-list ".*emacs-jupyter.*")
however I tried various regex expressions to match emacs jupyter but emacs (28.2) seems to be ignoring this variable. Is there a special format to this regex?