From 3989c3e714ac2b9b8e7ab62f8cd1b16ffaf69e10 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 13 May 2005 03:34:50 +0000 Subject: [PATCH] (font-lock-comment-delimiter-face): Fix up the inheritance. --- lisp/ChangeLog | 11 +++++++++++ lisp/font-lock.el | 2 ++ 2 files changed, 13 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 39ed1402c07..af10efb5c2d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2005-05-12 Stefan Monnier + + * font-lock.el (font-lock-comment-delimiter-face): Fix up + the inheritance. + 2005-05-12 Luc Teirlinck * progmodes/inf-lisp.el (inferior-lisp-mode-hook) @@ -58,6 +63,12 @@ (dired-mode): Use `dired-dnd-protocol-alist'. Move call of `dired-mode-hook' to the end. +2005-05-11 Stefan Monnier + + * font-lock.el (font-lock-fontify-syntactically-region): Don't use + comment-end if comment-start-skip is not set. + Obey the font-lock-comment-delimiter-face variables. + 2005-05-11 Stefan Monnier * files.el (executable-find): Move from executable.el. Use locate-file. diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 762923809d5..eb3ad97d7ce 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -1678,6 +1678,8 @@ Sets various variables using `font-lock-defaults' (or, if nil, using (defface font-lock-comment-delimiter-face '((default :inherit font-lock-comment-face) + (((class grayscale))) + (((class color) (min-colors 16))) (((class color) (min-colors 8) (background light)) :foreground "red") (((class color) (min-colors 8) (background dark)) -- 2.39.2