From 0d050337ff1569fee3726bdb2c255c544caa876e Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sun, 23 Apr 2023 23:25:23 +0100 Subject: [PATCH] el/dot-emacs.el: Set `font-lock-doc-face' (inherit `...-string-face'). Mostly they're doc /strings/, not comments. --- el/dot-emacs.el | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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)) -- 2.11.0