Skip to content

Commit a6d1858

Browse files
committed
Small improvements of the previous commit
1 parent 2670ae1 commit a6d1858

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
### Bugs fixed
1010

1111
* Namespaces can now use the full palette of legal symbol characters.
12-
* Namespace font-locking according to clojure.lang.LispReader.
12+
* Namespace font-locking according to `clojure.lang.LispReader`.
1313

1414
## 5.0.1 (15/11/2015)
1515

clojure-mode.el

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -354,17 +354,17 @@ Called by `imenu--generic-function'."
354354

355355
(eval-and-compile
356356
(defconst clojure-sym-rest-chars "^][\";\'@\\^`~\(\)\{\}\\"
357-
"A black list of chars a clojure symbol must not contain. See
357+
"A list of chars that a Clojure symbol cannot contain. See
358358
definiton of 'macros': URL `http://git.io/vRGLD'.")
359359
(defconst clojure-sym-1st-chars (concat clojure-sym-rest-chars "0-9")
360-
"A black list of chars a clojure symbol must not start with. See
360+
"A list of chars that a Clojure symbol cannot start with. See
361361
the for-loop: URL `http://git.io/vRGTj' lines:
362362
URL `http://git.io/vRGIh', URL `http://git.io/vRGLE'
363363
and value definition of 'macros': URL `http://git.io/vRGLD'.")
364364
(defconst clojure-sym
365365
(concat "[" clojure-sym-1st-chars "][" clojure-sym-rest-chars "]+")
366-
"A concatenation of black lists:
367-
`clojure-sym-1st-chars', `clojure-sym-rest-chars'."))
366+
"A concatenation of the blacklists
367+
`clojure-sym-1st-chars' and `clojure-sym-rest-chars'."))
368368

369369
(defconst clojure-font-lock-keywords
370370
(eval-when-compile

0 commit comments

Comments
 (0)