File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 8
8
9
9
### Bugs fixed
10
10
11
+ * [ #544 ] ( https://github.com/clojure-emacs/clojure-mode/issues/544 ) : Fix docstring detection when string contains backslash.
11
12
* [ #547 ] ( https://github.com/clojure-emacs/clojure-mode/issues/547 ) : Fix font-lock regex for character literals for uppercase chars and other symbols.
12
13
* [ #556 ] ( https://github.com/clojure-emacs/clojure-mode/issues/556 ) : Fix renaming of ns aliases containing regex characters.
13
14
* [ #555 ] ( https://github.com/clojure-emacs/clojure-mode/issues/555 ) : Fix ns detection for ns forms with complex metadata.
Original file line number Diff line number Diff line change @@ -806,7 +806,12 @@ DESCRIPTION is the description of the spec."
806
806
807
807
(" (def foo \n \" usage\" \n \" hello\" )"
808
808
(13 19 font-lock-doc-face )
809
- (24 30 font-lock-string-face )))
809
+ (24 30 font-lock-string-face ))
810
+
811
+ (" (def test-string\n \" this\\ n\n is\n my\n string\" )"
812
+ (20 24 font-lock-string-face )
813
+ (25 26 (bold font-lock-string-face ))
814
+ (27 46 font-lock-string-face )))
810
815
811
816
(when-fontifying-it " should handle deftype"
812
817
(" (deftype Foo)"
You can’t perform that action at this time.
0 commit comments