File tree 1 file changed +7
-8
lines changed
1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -862,14 +862,13 @@ any number of matches of `clojure--sym-forbidden-rest-chars'."))
862
862
" \\ >" )
863
863
0 font-lock-constant-face )
864
864
; ; Character literals - \1, \a, \newline, \u0000
865
- (,(rx " \\ " (or any
866
- " newline" " space" " tab" " formfeed" " backspace"
867
- " return"
868
- (: " u" (= 4 (char " 0-9a-fA-F" )))
869
- (: " o" (repeat 1 3 (char " 0-7" ))))
870
- word-boundary)
871
- 0 'clojure-character-face )
872
-
865
+ (,(rx (group " \\ " (or any
866
+ " newline" " space" " tab" " formfeed" " backspace"
867
+ " return"
868
+ (: " u" (= 4 (char " 0-9a-fA-F" )))
869
+ (: " o" (repeat 1 3 (char " 0-7" )))))
870
+ (or (not word) word-boundary))
871
+ 1 'clojure-character-face )
873
872
; ; namespace definitions: (ns foo.bar)
874
873
(,(concat " (\\ <ns\\ >[ \r\n\t ]*"
875
874
; ; Possibly metadata, shorthand and/or longhand
You can’t perform that action at this time.
0 commit comments