File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## master (unreleased)
4
4
5
+ ### Bugs fixed
6
+
7
+ * [ #371 ] ( https://github.com/clojure-emacs/clojure-mode/issues/371 ) : Don't font-lock ` :foo/def ` like a ` def ` form.
8
+
5
9
### New features
6
10
7
11
* [ #370 ] ( https://github.com/clojure-emacs/clojure-mode/issues/370 ) : Warn the user if they seem to have activated the wrong major-mode.
Original file line number Diff line number Diff line change @@ -489,7 +489,7 @@ Called by `imenu--generic-function'."
489
489
(defconst clojure--sym-forbidden-rest-chars " ][\" ;\' @\\ ^`~\(\)\{\} \\ ,\s\t\n\r "
490
490
" A list of chars that a Clojure symbol cannot contain.
491
491
See definition of 'macros': URL `http://git.io/vRGLD' ." )
492
- (defconst clojure--sym-forbidden-1st-chars (concat clojure--sym-forbidden-rest-chars " 0-9" )
492
+ (defconst clojure--sym-forbidden-1st-chars (concat clojure--sym-forbidden-rest-chars " 0-9: " )
493
493
" A list of chars that a Clojure symbol cannot start with.
494
494
See the for-loop: URL `http://git.io/vRGTj' lines: URL
495
495
`http://git.io/vRGIh' , URL `http://git.io/vRGLE' and value
You can’t perform that action at this time.
0 commit comments