ob-clojure.el: Fix compiler warning

* lisp/ob-clojure.el (ob-clojure-eval-with-cider): Silence compiler
warning about unused argument 'params'.
This commit is contained in:
Daniel Kraus 2023-03-19 21:39:07 +01:00
parent a645a6d679
commit cd2355a204
No known key found for this signature in database
GPG Key ID: C1C8D63F884EF9C9
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ or set the `:backend' header argument"))))
s))
(reverse ob-clojure-inf-clojure-tmp-output)))))
(defun ob-clojure-eval-with-cider (expanded params &optional cljs-p)
(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."
(org-require-package 'cider "Cider")