branch: elpa/clojure-mode
commit 8409c78c3912ea4a2fbe50f6a7d1b139205c5d34
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>
Update dynamic vars font-locking for Clojure 1.12
Add missing vars: *compiler-options*, *print-namespace-maps* (1.9),
*reader-resolver* (1.10), *fn-loader* and *repl* (1.12).
Remove *macro-meta* which doesn't exist in current Clojure.
---
clojure-mode.el | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/clojure-mode.el b/clojure-mode.el
index a450ca555e..30de27716a 100644
--- a/clojure-mode.el
+++ b/clojure-mode.el
@@ -1062,12 +1062,14 @@ any number of matches of
`clojure--sym-forbidden-rest-chars'."))
'("*1" "*2" "*3" "*agent*"
"*allow-unresolved-vars*" "*assert*" "*clojure-version*"
"*command-line-args*" "*compile-files*"
- "*compile-path*" "*data-readers*" "*default-data-reader-fn*"
+ "*compile-path*" "*compiler-options*"
+ "*data-readers*" "*default-data-reader-fn*"
"*e" "*err*" "*file*" "*flush-on-newline*"
- "*in*" "*macro-meta*" "*math-context*" "*ns*" "*out*"
+ "*fn-loader*"
+ "*in*" "*math-context*" "*ns*" "*out*"
"*print-dup*" "*print-length*" "*print-level*"
- "*print-meta*" "*print-readably*"
- "*read-eval*" "*source-path*"
+ "*print-meta*" "*print-namespace-maps*" "*print-readably*"
+ "*read-eval*" "*reader-resolver*" "*repl*" "*source-path*"
"*unchecked-math*"
"*use-context-classloader*" "*warn-on-reflection*")
t)