diff --git a/CHANGELOG.md b/CHANGELOG.md index 20609c6f..70f448f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## master (unreleased) +### Bugs fixed + +* [#520](https://github.com/clojure-emacs/clojure-mode/issues/508): Fix allow `clojure-align-cond-forms` to recognize qualified forms. + ## 5.11.0 (2019-07-16) ### New features diff --git a/clojure-mode.el b/clojure-mode.el index 28c3d862..01f82e31 100644 --- a/clojure-mode.el +++ b/clojure-mode.el @@ -1130,7 +1130,9 @@ will align the values like this: :safe #'listp :type '(repeat string)) -(defcustom clojure-align-cond-forms '("condp" "cond" "cond->" "cond->>" "case" "are") +(defcustom clojure-align-cond-forms '("condp" "cond" "cond->" "cond->>" "case" "are" + "clojure.core/condp" "clojure.core/cond" "clojure.core/cond->" + "clojure.core/cond->>" "clojure.core/case" "clojure.test/are") "List of strings identifying cond-like forms." :package-version '(clojure-mode . "5.1") :safe #'listp