Skip to content

Commit 84ac838

Browse files
committed
Fix indentation
1 parent 651fae9 commit 84ac838

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

clj-refactor.el

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1477,18 +1477,18 @@ Optionally adds :refer [REFER-NAMES] clause."
14771477
"Returns a list of the function names in STRING-WITH-DEFNS,
14781478
optionally including those that are declared private."
14791479
(cljr--with-string-content string-with-defns
1480-
(let ((count (paredit-count-sexps-forward))
1481-
(names '()))
1482-
(dotimes (_ count)
1483-
(paredit-forward-down)
1484-
(cljr--goto-toplevel)
1485-
(forward-char)
1486-
(if (and include-private (looking-at "defn-"))
1487-
(push (cljr--name-of-current-def) names)
1488-
(when (looking-at "defn ")
1489-
(push (cljr--name-of-current-def) names)))
1490-
(paredit-forward-up))
1491-
names)))
1480+
(let ((count (paredit-count-sexps-forward))
1481+
(names '()))
1482+
(dotimes (_ count)
1483+
(paredit-forward-down)
1484+
(cljr--goto-toplevel)
1485+
(forward-char)
1486+
(if (and include-private (looking-at "defn-"))
1487+
(push (cljr--name-of-current-def) names)
1488+
(when (looking-at "defn ")
1489+
(push (cljr--name-of-current-def) names)))
1490+
(paredit-forward-up))
1491+
names)))
14921492

14931493
(defun cljr--current-namespace ()
14941494
(save-excursion

0 commit comments

Comments
 (0)