We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 746e4d6 commit beb0035Copy full SHA for beb0035
cider-mode.el
@@ -138,8 +138,8 @@ With a prefix arg SET-NAMESPACE sets the namespace in the REPL buffer to that
138
of the namespace in the Clojure source buffer."
139
(interactive "P")
140
(let* ((connections (cider-connections))
141
- (buffer (cl-some (lambda (b) (and (member b connections) b))
142
- (buffer-list))))
+ (buffer (seq-find (lambda (b) (member b connections))
+ (buffer-list))))
143
(cider--switch-to-repl-buffer buffer set-namespace)))
144
145
(declare-function cider-load-buffer "cider-interaction")
0 commit comments