el/dot-emacs.el: Inherit `font-lock-comment-delimiter-face'.
authorMark Wooding <mdw@distorted.org.uk>
Sun, 23 Apr 2023 22:24:28 +0000 (23:24 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sun, 23 Apr 2023 22:52:09 +0000 (23:52 +0100)
Rather than duplicating the defintion.

el/dot-emacs.el

index 30b8559..087c211 100644 (file)
@@ -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")