From 6a630660acfafd77e700c50d51984e326bdfdab0 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 17 Sep 2025 09:57:20 -0400 Subject: [PATCH] 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: 979b3aa8c1c2 --- modules/lang/org/contrib/jupyter.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lang/org/contrib/jupyter.el b/modules/lang/org/contrib/jupyter.el index 7199e91cd..8ead7dedb 100644 --- a/modules/lang/org/contrib/jupyter.el +++ b/modules/lang/org/contrib/jupyter.el @@ -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))))