Skip to content

Commit 607a2ce

Browse files
committed
Changelog updated.
clojure-project-root-function defaults to #'clojure-project-root-path now.
1 parent cd71981 commit 607a2ce

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* [#443](https://github.com/clojure-emacs/clojure-mode/issues/443): Fix behavior of `clojure-forward-logical-sexp` and `clojure-backward-logical-sexp` with conditional macros.
1010
* [#429](https://github.com/clojure-emacs/clojure-mode/issues/429): Fix a bug causing last occurrence of expression sometimes is not replaced when using `move-to-let`.
1111
* [#423](https://github.com/clojure-emacs/clojure-mode/issues/423): Make `clojure-match-next-def` more robust against zero-arity def-like forms.
12+
* [#451](https://github.com/clojure-emacs/clojure-mode/issues/451): Make project root directory calculation customized by `clojure-project-root-function`
1213

1314
### New features
1415

clojure-mode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ Out-of-the box `clojure-mode' understands lein, boot and gradle."
192192
(and (listp value)
193193
(cl-every 'stringp value))))
194194

195-
(defcustom clojure-project-root-function 'clojure-project-root-path
195+
(defcustom clojure-project-root-function #'clojure-project-root-path
196196
"Function to locate clojure project root directory."
197197
:type 'function
198198
:risky t

0 commit comments

Comments
 (0)