Skip to content

Commit a9cbe6a

Browse files
committed
[Fix #524] Add an indentation rule for delay
1 parent 0496421 commit a9cbe6a

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
* [#445](https://github.com/clojure-emacs/clojure-mode/issues/445), [#405](https://github.com/clojure-emacs/clojure-mode/issues/405), [#469](https://github.com/clojure-emacs/clojure-mode/issues/469): Correct font-locking on string definitions with docstrings, e.g: `(def foo "doc" "value")`. Correct indentation as well.
1616
* [#518](https://github.com/clojure-emacs/clojure-mode/issues/518): Fix `clojure-find-ns` when there's an `ns` form inside a string.
1717

18+
### Changes
19+
20+
* [#524](https://github.com/clojure-emacs/clojure-mode/issues/524): Add proper indentation rule for `delay` (same as for `future`).
21+
1822
## 5.10.0 (2019-01-05)
1923

2024
### New features

clojure-mode.el

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1572,6 +1572,7 @@ work). To set it from Lisp code, use
15721572
(when-not 1)
15731573
(when-first 1)
15741574
(do 0)
1575+
(delay 0)
15751576
(future 0)
15761577
(comment 0)
15771578
(doto 1)

0 commit comments

Comments
 (0)