mirror of
https://github.com/vale981/emacs-jupyter
synced 2025-03-04 15:41:37 -05:00
org-babel-expand-body:jupyter: Correct arguments to language specific expander
The language specific expander only expects (BODY PARAMS)
This commit is contained in:
parent
1befd70e98
commit
240dc7ab08
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ path."
|
|||
(let* ((expander (when lang
|
||||
(intern (format "org-babel-expand-body:%s" lang))))
|
||||
(expanded (if (functionp expander)
|
||||
(funcall expander body params var-lines)
|
||||
(funcall expander body params)
|
||||
(org-babel-expand-body:generic body params var-lines)))
|
||||
(changelist nil))
|
||||
(when-let* ((dir (alist-get :dir params)))
|
||||
|
|
Loading…
Add table
Reference in a new issue