File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
### Bugs fixed
6
6
7
+ * Fix ` clojure-align ` when called from ` clojure-ts-mode ` major mode buffers
8
+
9
+ ### Bugs fixed
10
+
7
11
* [ #671 ] ( https://github.com/clojure-emacs/clojure-mode/issues/671 ) : Syntax highlighting for digits after the first in % args
8
12
9
13
## 5.18.1 (2023-11-24)
Original file line number Diff line number Diff line change @@ -1469,7 +1469,7 @@ When called from lisp code align everything between BEG and END."
1469
1469
(cl-incf count)))
1470
1470
; ; Pre-indent the region to avoid aligning to improperly indented
1471
1471
; ; contents (#551). Also fixes #360.
1472
- (indent-region (point ) sexp-end)
1472
+ (indent-region (point ) ( marker-position sexp-end) )
1473
1473
(dotimes (_ count)
1474
1474
(align-region (point ) sexp-end nil
1475
1475
`((clojure-align (regexp . clojure--search-whitespace-after-next-sexp)
You can’t perform that action at this time.
0 commit comments