File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -1477,18 +1477,18 @@ Optionally adds :refer [REFER-NAMES] clause."
14771477 " Returns a list of the function names in STRING-WITH-DEFNS,
14781478optionally 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
You can’t perform that action at this time.
0 commit comments