Skip to content

Commit 08a4b57

Browse files
committed
Fix a bug introduced by aligning forms without indent spec
1 parent 276a59c commit 08a4b57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clojure-mode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ construct."
851851
(skip (cond ((numberp method) method)
852852
((null method) 0)
853853
((sequencep method) (elt method 0)))))
854-
(when (numberp skip)
854+
(when (and fun (numberp skip))
855855
(clojure-forward-logical-sexp skip)
856856
(comment-forward (point-max))
857857
fun)) ; Return non-nil (the var name).

0 commit comments

Comments
 (0)