File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ found for the PROJECT-TYPE"
228
228
(" boot" (cider--boot-resolve-command))
229
229
(" gradle" (cider--gradle-resolve-command))
230
230
(_ (user-error " Unsupported project type `%s' " project-type))))
231
-
231
+
232
232
(defun cider-jack-in-params (project-type )
233
233
" Determine the commands params for `cider-jack-in' for the PROJECT-TYPE."
234
234
(pcase project-type
@@ -546,11 +546,11 @@ gets associated with it."
546
546
547
547
(defun cider-select-endpoint ()
548
548
" Interactively select the host and port to connect to."
549
- (dolist (ep cider-known-endpoints)
550
- (unless (stringp (or (nth 2 ep )
551
- (nth 1 ep )))
549
+ (dolist (endpoint cider-known-endpoints)
550
+ (unless (stringp (or (nth 2 endpoint )
551
+ (nth 1 endpoint )))
552
552
(user-error " The port for %s in `cider-known-endpoints' should be a string"
553
- (nth 0 ep ))))
553
+ (nth 0 endpoint ))))
554
554
(let* ((ssh-hosts (cider--ssh-hosts))
555
555
(hosts (seq-uniq (append (when cider-host-history
556
556
; ; history elements are strings of the form "host:port"
You can’t perform that action at this time.
0 commit comments