Skip to content

Commit 2648558

Browse files
Merge pull request #411 from raxod502/feat/fix-indentation
Fix indentation of `cond'
2 parents 408ab1f + b240c1c commit 2648558

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

clj-refactor.el

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1836,14 +1836,14 @@ FEATURE is either :clj or :cljs."
18361836
(or (cljr--clj-file-p)
18371837
(when (cljr--cljc-file-p)
18381838
(cond
1839-
((cljr--point-in-reader-conditional-p)
1840-
(cljr--point-in-reader-conditional-branch-p :clj))
1841-
(cljr-assume-language-context
1842-
(string-equal cljr-assume-language-context "clj"))
1843-
(t
1844-
(string-equal (cljr--prompt-user-for "Language context at point? "
1845-
(list "clj" "cljs"))
1846-
"clj"))))))
1839+
((cljr--point-in-reader-conditional-p)
1840+
(cljr--point-in-reader-conditional-branch-p :clj))
1841+
(cljr-assume-language-context
1842+
(string-equal cljr-assume-language-context "clj"))
1843+
(t
1844+
(string-equal (cljr--prompt-user-for "Language context at point? "
1845+
(list "clj" "cljs"))
1846+
"clj"))))))
18471847

18481848
(defun cljr--aget (map key)
18491849
(cdr (assoc key map)))

0 commit comments

Comments
 (0)