Skip to content

Commit 2394e36

Browse files
committed
Fix indentation of seq-find call to satisfy linter
1 parent d698390 commit 2394e36

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

clojure-mode.el

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2411,10 +2411,11 @@ many times."
24112411
(beginning-of-defun-raw)
24122412
(forward-char 1) ;; skip paren so we start at comment
24132413
(clojure-forward-logical-sexp) ;; skip past the comment form itself
2414-
(if-let ((sexp-start (seq-find (lambda (beg-pos)
2415-
(< beg-pos original-position))
2416-
(clojure-sexp-starts-until-position
2417-
clojure-comment-end))))
2414+
(if-let ((sexp-start (seq-find
2415+
(lambda (beg-pos)
2416+
(< beg-pos original-position))
2417+
(clojure-sexp-starts-until-position
2418+
clojure-comment-end))))
24182419
(progn (goto-char sexp-start) t)
24192420
(beginning-of-defun-raw n))))
24202421
(scan-error (beginning-of-defun-raw n)))

0 commit comments

Comments
 (0)