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://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/0d050337ff1569fee3726bdb2c255c544caa876e?hp=77ccc2aa6978eaab7c925f30ad6b1a1abcdb747b 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 @@ (mdw-define-face font-lock-comment-face (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))