branch: elpa/clojure-mode
commit 2394e36fb60e8af56a9994daacacfb9b7c55f233
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>

    Fix indentation of seq-find call to satisfy linter
---
 clojure-mode.el | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/clojure-mode.el b/clojure-mode.el
index 721ad6085c..50c651fb4d 100644
--- a/clojure-mode.el
+++ b/clojure-mode.el
@@ -2411,10 +2411,11 @@ many times."
                 (beginning-of-defun-raw)
                 (forward-char 1)              ;; skip paren so we start at 
comment
                 (clojure-forward-logical-sexp) ;; skip past the comment form 
itself
-                (if-let ((sexp-start (seq-find (lambda (beg-pos)
-                                                        (< beg-pos 
original-position))
-                                                      
(clojure-sexp-starts-until-position
-                                                       clojure-comment-end))))
+                (if-let ((sexp-start (seq-find
+                                      (lambda (beg-pos)
+                                        (< beg-pos original-position))
+                                      (clojure-sexp-starts-until-position
+                                       clojure-comment-end))))
                     (progn (goto-char sexp-start) t)
                   (beginning-of-defun-raw n))))
           (scan-error (beginning-of-defun-raw n)))

Reply via email to