mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-18 16:06:56 -05:00
fix(org): +jupyter: wrong-number-of-args error
Forgot to remove the extra argument when I converted this from an
:around advice to :before.
Fix: #8509
Amend: 979b3aa8c1
This commit is contained in:
@@ -52,7 +52,7 @@
|
||||
;; HACK: ob-juypter don't support ob-async and handles async itself, so
|
||||
;; piggyback off of `org-babel-jupyter-make-language-alias' to disable it
|
||||
;; for every current and future kernel language.
|
||||
(defadvice! +org-jupyter--suppress-ob-async-a (fn _kernel lang)
|
||||
(defadvice! +org-jupyter--suppress-ob-async-a (_kernel lang)
|
||||
:before #'org-babel-jupyter-make-language-alias
|
||||
(with-eval-after-load 'ob-async
|
||||
(add-to-list 'ob-async-no-async-languages-alist (concat "jupyter-" lang))))
|
||||
|
Reference in New Issue
Block a user