@@ -388,7 +388,8 @@ that should be font-locked:
388
388
`macro' (default): Any defined macro gets the `font-lock-builtin-face' .
389
389
`function' : Any defined function gets the `font-lock-function-face' .
390
390
`var' : Any non-local var gets the `font-lock-variable-face' .
391
- `deprecated' (default): Any deprecated var gets the `cider-deprecated' face.
391
+ `deprecated' (default): Any deprecated var gets the `cider-deprecated-face'
392
+ face.
392
393
`core' (default): Any symbol from clojure.core (face depends on type).
393
394
394
395
The value can also be t, which means to font-lock as much as possible."
@@ -402,7 +403,7 @@ The value can also be t, which means to font-lock as much as possible."
402
403
:group 'cider
403
404
:package-version '(cider . " 0.10.0" ))
404
405
405
- (defface cider-deprecated
406
+ (defface cider-deprecated-face
406
407
'((((background light )) :background " light goldenrod" )
407
408
(((background dark )) :background " #432" ))
408
409
" Face used on deprecated vars."
@@ -483,10 +484,10 @@ The value can also be t, which means to font-lock as much as possible."
483
484
(cider--unless-local-match font-lock-variable-name-face ))))
484
485
,@(when deprecated
485
486
`((,(regexp-opt deprecated 'symbols ) 0
486
- (cider--unless-local-match 'cider-deprecated ) append )))
487
+ (cider--unless-local-match 'cider-deprecated-face ) append )))
487
488
,@(when enlightened
488
489
`((,(regexp-opt enlightened 'symbols ) 0
489
- (cider--unless-local-match 'cider-enlightened ) append )))
490
+ (cider--unless-local-match 'cider-enlightened-face ) append )))
490
491
,@(when instrumented
491
492
`((,(regexp-opt instrumented 'symbols ) 0
492
493
(cider--unless-local-match 'cider-instrumented-face ) append )))
0 commit comments