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."
1477
1477
" Returns a list of the function names in STRING-WITH-DEFNS,
1478
1478
optionally including those that are declared private."
1479
1479
(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)))
1492
1492
1493
1493
(defun cljr--current-namespace ()
1494
1494
(save-excursion
You can’t perform that action at this time.
0 commit comments