From: Mark Wooding Date: Sun, 23 Apr 2023 22:25:23 +0000 (+0100) Subject: el/dot-emacs.el: Set `font-lock-doc-face' (inherit `...-string-face'). X-Git-Url: https://git.distorted.org.uk/~mdw/profile/commitdiff_plain/0d050337ff1569fee3726bdb2c255c544caa876e el/dot-emacs.el: Set `font-lock-doc-face' (inherit `...-string-face'). Mostly they're doc /strings/, not comments. --- diff --git a/el/dot-emacs.el b/el/dot-emacs.el index dd52be1..f5669d3 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -1874,14 +1874,12 @@ doesn't match any of the regular expressions in (t :weight bold)) (mdw-define-face font-lock-comment-delimiter-face (t :inherit font-lock-comment-face)) -(mdw-define-face font-lock-doc-face - (((min-colors 64)) :slant italic :foreground "SeaGreen1") - (((class color)) :foreground "green") - (t :weight bold)) (mdw-define-face font-lock-string-face (((min-colors 64)) :foreground "SkyBlue1") (((class color)) :foreground "cyan") (t :weight bold)) +(mdw-define-face font-lock-doc-face + (t :inherit font-lock-string-face)) (mdw-define-face message-separator (t :background "red" :foreground "white" :weight bold))