diff --git a/clojure-mode.el b/clojure-mode.el index 26beed62..ae8c5d32 100644 --- a/clojure-mode.el +++ b/clojure-mode.el @@ -685,7 +685,8 @@ This function also returns nil meaning don't specify the indentation." (function-tail (first (last (split-string (substring-no-properties function) "/"))))) - (setq method (get (intern-soft function-tail) 'clojure-indent-function)) + (setq method (or (get (intern-soft function) 'clojure-indent-function) + (get (intern-soft function-tail) 'clojure-indent-function))) (cond ((member (char-after open-paren) '(?\[ ?\{)) (goto-char open-paren) (1+ (current-column)))