about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2024-07-10 09:28:52 +0100
committerDavid Morgan <djm_uk@protonmail.com>2024-07-10 09:28:52 +0100
commit145a306b32ade00e013973853ce7d5439515bfd1 (patch)
treed02f05d9d1815af5fd7693ec8478951d974cd45a
parent4e59fabfc491e48a4c815e148ccb2d2b3c6ab0b3 (diff)
downloaddotfiles-145a306b32ade00e013973853ce7d5439515bfd1.tar.gz
Fix whitespace
-rw-r--r--.emacs.d/lisp/init-project.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-project.el b/.emacs.d/lisp/init-project.el
index 3e847da..56c2ab1 100644
--- a/.emacs.d/lisp/init-project.el
+++ b/.emacs.d/lisp/init-project.el
@@ -9,12 +9,12 @@
   (defun project--clojure-switch-to-test (filename project-root)
     (let* ((project-src-file (string-remove-prefix project-root filename))
            (project-test-file (replace-regexp-in-string "\.clj$" "_test.clj"
-                                                (replace-regexp-in-string "^src/" "test/" project-src-file))))
+                                                        (replace-regexp-in-string "^src/" "test/" project-src-file))))
       (find-file (expand-file-name project-test-file project-root))))
   (defun project--clojure-switch-to-src (test-filename project-root)
     (let* ((project-test-file (string-remove-prefix project-root test-filename))
            (project-src-file (replace-regexp-in-string "_test\.clj$" ".clj"
-                                                        (replace-regexp-in-string "^test/" "src/" project-test-file))))
+                                                       (replace-regexp-in-string "^test/" "src/" project-test-file))))
       (find-file (expand-file-name project-src-file project-root))))
   (defun project-clojure-test-switch ()
     (interactive)