Skip to content

Commit 068b52b

Browse files
committed
Satisfy linters
1 parent 2c3a16a commit 068b52b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Diff for: cider-repl.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -711,8 +711,8 @@ namespaces. STRING is REPL's output."
711711
string)
712712

713713
(defvar cider-repl-preoutput-hook `(,(if (< emacs-major-version 29)
714-
'cider-repl--ansi-color-apply
715-
'ansi-color-apply)
714+
'cider-repl--ansi-color-apply
715+
'ansi-color-apply)
716716
cider-repl-highlight-current-project
717717
cider-repl-highlight-spec-keywords
718718
cider-repl-add-locref-help-echo)

Diff for: cider.el

+2-1
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ returned by this function does not include keyword arguments."
485485
`(("cider/cider-nrepl" ,cider-injected-middleware-version)
486486
("mx.cider/enrich-classpath" "1.9.0")))
487487
(append cider-jack-in-lein-plugins
488-
`(("cider/cider-nrepl" ,cider-injected-middleware-version))))))
488+
`(("cider/cider-nrepl" ,cider-injected-middleware-version))))))
489489
(thread-last plugins
490490
(seq-filter
491491
(lambda (spec)
@@ -609,6 +609,7 @@ removed, LEIN-PLUGINS, LEIN-MIDDLEWARES and finally PARAMS."
609609
params))
610610

611611
(defun cider--dedupe-deps (deps)
612+
"Removes the duplicates in DEPS."
612613
(cl-delete-duplicates deps :test 'equal))
613614

614615
(defun cider-clojure-cli-jack-in-dependencies (global-options _params dependencies)

0 commit comments

Comments
 (0)