# HG changeset patch # User Stefan Monnier # Date 1115932984 0 # Node ID 8db74faa378a0d64c271ff3e81454051278b3313 # Parent 43e264259629dcad052a24e3d7101e771426bf81 (font-lock-comment-delimiter-face): Fix last change. diff -r 43e264259629 -r 8db74faa378a lisp/font-lock.el --- a/lisp/font-lock.el Thu May 12 20:04:32 2005 +0000 +++ b/lisp/font-lock.el Thu May 12 21:23:04 2005 +0000 @@ -1677,7 +1677,11 @@ :group 'font-lock-highlighting-faces) (defface font-lock-comment-delimiter-face - '((t :inherit font-lock-comment-face)) + '((default :inherit font-lock-comment-face) + (((class color) (min-colors 8) (background light)) + :foreground "red") + (((class color) (min-colors 8) (background dark)) + :foreground "red1")) "Font Lock mode face used to highlight comment delimiters." :group 'font-lock-highlighting-faces)