comparison lisp/font-lock.el @ 62272:f1e03f4e94d2

(font-lock-comment-delimiter-face): Fix up the inheritance.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 13 May 2005 03:34:32 +0000
parents 8db74faa378a
children ebcb47e6b3f3 6fef25c75847
comparison
equal deleted inserted replaced
62271:6cae229f309b 62272:f1e03f4e94d2
1676 "Font Lock mode face used to highlight comments." 1676 "Font Lock mode face used to highlight comments."
1677 :group 'font-lock-highlighting-faces) 1677 :group 'font-lock-highlighting-faces)
1678 1678
1679 (defface font-lock-comment-delimiter-face 1679 (defface font-lock-comment-delimiter-face
1680 '((default :inherit font-lock-comment-face) 1680 '((default :inherit font-lock-comment-face)
1681 (((class grayscale)))
1682 (((class color) (min-colors 16)))
1681 (((class color) (min-colors 8) (background light)) 1683 (((class color) (min-colors 8) (background light))
1682 :foreground "red") 1684 :foreground "red")
1683 (((class color) (min-colors 8) (background dark)) 1685 (((class color) (min-colors 8) (background dark))
1684 :foreground "red1")) 1686 :foreground "red1"))
1685 "Font Lock mode face used to highlight comment delimiters." 1687 "Font Lock mode face used to highlight comment delimiters."