@@ -348,7 +348,7 @@ string is quoted for passing as argument to an inferior shell."
348348(defun cider-boot-dependencies (dependencies )
349349 " Return a list of boot artifact strings created from DEPENDENCIES."
350350 (concat (mapconcat #'cider--list-as-boot-artifact dependencies " " )
351- (when ( not ( seq-empty-p dependencies) ) " " )))
351+ (unless ( seq-empty-p dependencies) " " )))
352352
353353(defun cider-boot-middleware-task (params middlewares )
354354 " Create a command to add MIDDLEWARES with corresponding PARAMS."
@@ -366,7 +366,7 @@ PLUGINS and MIDDLEWARES. PARAMS and MIDDLEWARES are passed on to
366366`cider-boot-middleware-task` before concatenating and DEPENDENCIES and PLUGINS
367367 are passed on to `cider-boot-dependencies`."
368368 (concat global-opts
369- (when ( not ( seq-empty-p global-opts) ) " " )
369+ (unless ( seq-empty-p global-opts) " " )
370370 " -i \" (require 'cider.tasks)\" " ; ; Note the white space at the end here
371371 (cider-boot-dependencies (append dependencies plugins))
372372 (cider-boot-middleware-task params middlewares)))
@@ -390,7 +390,7 @@ Does so by concatenating GLOBAL-OPTS, DEPENDENCIES, with DEPENDENCIES-EXCLUSIONS
390390removed, LEIN-PLUGINS, and finally PARAMS."
391391 (concat
392392 global-opts
393- (when ( not ( seq-empty-p global-opts) ) " " )
393+ (unless ( seq-empty-p global-opts) " " )
394394 (mapconcat #'identity
395395 (append (seq-map (lambda (dep )
396396 (let ((exclusions (cadr (assoc (car dep) dependencies-exclusions))))
@@ -447,7 +447,7 @@ dependencies."
447447 cider-jack-in-nrepl-middlewares))
448448 (" gradle" (concat
449449 global-opts
450- (when ( not ( seq-empty-p global-opts) ) " " )
450+ (unless ( seq-empty-p global-opts) " " )
451451 params))
452452 (_ (error " Unsupported project type `%s' " project-type))))
453453
0 commit comments