File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## master (unreleased)
4
4
5
+ * Indent and font-lock forms that start with ` let- ` , ` while- ` or ` when- ` like their counterparts.
6
+
5
7
## 5.0.1 (15/11/2015)
6
8
7
9
### Bugs fixed
Original file line number Diff line number Diff line change @@ -127,8 +127,8 @@ POS."
127
127
(ert-deftest clojure-mode-syntax-table/fontify-let-when-while-type-forms ()
128
128
:tags '(fontification syntax-table)
129
129
(should (equal (clojure-test-face-at 2 11 " (when-alist [x 1]\n ())" ) 'font-lock-keyword-face ))
130
- (should (equal (clojure-test-face-at 2 11 " (while-alist [x 1]\n ())" ) 'font-lock-keyword-face ))
131
- (should (equal (clojure-test-face-at 2 11 " (let-alist [x 1]\n ())" ) 'various-faces )))
130
+ (should (equal (clojure-test-face-at 2 12 " (while-alist [x 1]\n ())" ) 'font-lock-keyword-face ))
131
+ (should (equal (clojure-test-face-at 2 10 " (let-alist [x 1]\n ())" ) 'font-lock-keyword-face )))
132
132
133
133
(ert-deftest clojure-mode-syntax-table/type ()
134
134
:tags '(fontification syntax-table)
You can’t perform that action at this time.
0 commit comments