We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7a4f98d + 15e1117 commit d477772Copy full SHA for d477772
clojure-mode.el
@@ -681,7 +681,8 @@ This function also returns nil meaning don't specify the indentation."
681
(function-tail (car
682
(reverse
683
(split-string (substring-no-properties function) "/")))))
684
- (setq method (get (intern-soft function-tail) 'clojure-indent-function))
+ (setq method (or (get (intern-soft function) 'clojure-indent-function)
685
+ (get (intern-soft function-tail) 'clojure-indent-function)))
686
(cond ((member (char-after open-paren) '(?\[ ?\{))
687
(goto-char open-paren)
688
(1+ (current-column)))
0 commit comments