File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -761,15 +761,15 @@ A new record is created to define this constructor."
761
761
; ; ------ file -----------
762
762
763
763
(defun cljr--project-dir ()
764
- (let ((project-dir ( or (ignore-errors
765
- (file-truename
766
- (locate-dominating-file default-directory " project.clj" )))
767
- (ignore-errors
768
- (file-truename
769
- (locate-dominating-file default-directory " build.boot" )))
770
- (ignore-errors (file-truename
771
- (locate-dominating-file default-directory " pom.xml" ))) )))
772
- ( or project-dir " " ) ))
764
+ (or (ignore-errors
765
+ (file-truename
766
+ (locate-dominating-file default-directory " project.clj" )))
767
+ (ignore-errors
768
+ (file-truename
769
+ (locate-dominating-file default-directory " build.boot" )))
770
+ (ignore-errors (file-truename
771
+ (locate-dominating-file default-directory " pom.xml" )))
772
+ " " ))
773
773
774
774
(defun cljr--project-file ()
775
775
(let ((project-dir (cljr--project-dir)))
You can’t perform that action at this time.
0 commit comments