Restore fallback warning removed by ce1105b46

Shoulds till warn when the language isn't blacklisted.
This commit is contained in:
Henrik Lissner 2021-03-02 12:07:45 -05:00
parent ce1105b463
commit 19563de316

View file

@ -234,6 +234,7 @@ Also adds support for a `:sync' parameter to override `:async'."
(member (car info) org-babel-async-language-blacklist))
(funcall fn arg info params))
((not (member (cdr (assq :session params)) '("none" nil)))
(message "Org babel :: :session is incompatible with :async. Executing synchronously!")
nil)
((funcall orig-fn fn arg info params))))))