From: Mark Wooding Date: Sun, 23 Apr 2023 22:24:28 +0000 (+0100) Subject: el/dot-emacs.el: Inherit `font-lock-comment-delimiter-face'. X-Git-Url: https://git.distorted.org.uk/~mdw/profile/commitdiff_plain/52322015f16cfa7b79712531f1e39c818c55732d el/dot-emacs.el: Inherit `font-lock-comment-delimiter-face'. Rather than duplicating the defintion. --- diff --git a/el/dot-emacs.el b/el/dot-emacs.el index 30b8559..087c211 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -1868,14 +1868,12 @@ doesn't match any of the regular expressions in (t :weight bold)) (mdw-define-face font-lock-variable-name-face (t :slant italic)) -(mdw-define-face font-lock-comment-delimiter-face - (((min-colors 64)) :slant italic :foreground "SeaGreen1") - (((class color)) :foreground "green") - (t :weight bold)) (mdw-define-face font-lock-comment-face (((min-colors 64)) :slant italic :foreground "SeaGreen1") (((class color)) :foreground "green") (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")