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"
228228 (" boot" (cider--boot-resolve-command))
229229 (" gradle" (cider--gradle-resolve-command))
230230 (_ (user-error " Unsupported project type `%s' " project-type))))
231-
231+
232232(defun cider-jack-in-params (project-type )
233233 " Determine the commands params for `cider-jack-in' for the PROJECT-TYPE."
234234 (pcase project-type
@@ -546,11 +546,11 @@ gets associated with it."
546546
547547(defun cider-select-endpoint ()
548548 " 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 )))
552552 (user-error " The port for %s in `cider-known-endpoints' should be a string"
553- (nth 0 ep ))))
553+ (nth 0 endpoint ))))
554554 (let* ((ssh-hosts (cider--ssh-hosts))
555555 (hosts (seq-uniq (append (when cider-host-history
556556 ; ; history elements are strings of the form "host:port"
You can’t perform that action at this time.
0 commit comments