mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Fix #4726: void-variable org-babel-async-language-blacklist
Supposed to be ob-async-no-async-languages-alist
This commit is contained in:
@ -231,7 +231,7 @@ Also adds support for a `:sync' parameter to override `:async'."
|
|||||||
(params (org-babel-merge-params (nth 2 info) params)))
|
(params (org-babel-merge-params (nth 2 info) params)))
|
||||||
(cond ((or (assq :sync params)
|
(cond ((or (assq :sync params)
|
||||||
(not (assq :async params))
|
(not (assq :async params))
|
||||||
(member (car info) org-babel-async-language-blacklist))
|
(member (car info) ob-async-no-async-languages-alist))
|
||||||
(funcall fn arg info params))
|
(funcall fn arg info params))
|
||||||
((not (member (cdr (assq :session params)) '("none" nil)))
|
((not (member (cdr (assq :session params)) '("none" nil)))
|
||||||
(message "Org babel :: :session is incompatible with :async. Executing synchronously!")
|
(message "Org babel :: :session is incompatible with :async. Executing synchronously!")
|
||||||
|
Reference in New Issue
Block a user