From 880782660a92ea0b01b99d233a9f950ea2dd9fee Mon Sep 17 00:00:00 2001 From: Daniel Kraus Date: Thu, 23 Mar 2023 13:25:15 +0100 Subject: [PATCH] ob-clojure.el: Reword docstring for ob-clojure-eval-with-cider * lisp/ob-clojure.el (ob-clojure-eval-with-cider): Mention in the docstring that the Babel params argument is not used anymore. --- lisp/ob-clojure.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lisp/ob-clojure.el b/lisp/ob-clojure.el index 2b17516ec..ec14004ac 100644 --- a/lisp/ob-clojure.el +++ b/lisp/ob-clojure.el @@ -266,8 +266,9 @@ or set the `:backend' header argument")))) (reverse ob-clojure-inf-clojure-tmp-output))))) (defun ob-clojure-eval-with-cider (expanded _params &optional cljs-p) - "Evaluate EXPANDED code block with PARAMS using cider. -When CLJS-P is non-nil, use a cljs connection instead of clj." + "Evaluate EXPANDED code block using cider. +When CLJS-P is non-nil, use a cljs connection instead of clj. +The PARAMS from Babel are not used in this function." (org-require-package 'cider "Cider") (let ((connection (cider-current-connection (if cljs-p "cljs" "clj")))) (unless connection (sesman-start-session 'CIDER))