mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-21 06:55:35 +00:00
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:
parent
a645a6d679
commit
cd2355a204
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user