branch: elpa/cider
commit 0dcc5b079a79a928b791cc9cd9bbd2e3bef92d0d
Author: vemv <v...@users.noreply.github.com>
Commit: Bozhidar Batsov <bozhi...@batsov.dev>

    Fix cider-client.el indentation
    
    Fixes the build.
---
 cider-client.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/cider-client.el b/cider-client.el
index 78e8073deb..c49e975810 100644
--- a/cider-client.el
+++ b/cider-client.el
@@ -597,9 +597,9 @@ Sometimes the classpath contains entries like src/main and 
we need to
 resolve those to absolute paths."
   (when (cider-runtime-clojure-p)
     (let ((classpath (thread-first "(seq (.split (System/getProperty 
\"java.class.path\") \":\"))"
-                                   (cider-sync-tooling-eval)
-                                   (nrepl-dict-get "value")
-                                   read))
+                       (cider-sync-tooling-eval)
+                       (nrepl-dict-get "value")
+                       read))
           (project (clojure-project-dir)))
       (mapcar (lambda (path) (cider--get-abs-path path project)) classpath))))
 

Reply via email to