Mercurial > emacs
changeset 84457:33b5c158a227
(outline-4, outline-5, outline-7):
Move font-lock-builtin-face down from 4 to 7 to better keep the
progression of color brightness, and to better match Org-mode's faces.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Mon, 10 Sep 2007 18:21:58 +0000 |
parents | 26077e45b33f |
children | 6a870293225d |
files | lisp/ChangeLog lisp/outline.el |
diffstat | 2 files changed, 9 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Mon Sep 10 17:34:24 2007 +0000 +++ b/lisp/ChangeLog Mon Sep 10 18:21:58 2007 +0000 @@ -1,3 +1,9 @@ +2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca> + + * outline.el (outline-4, outline-5, outline-7): + Move font-lock-builtin-face down from 4 to 7 to better keep the + progression of color brightness, and to better match Org-mode's faces. + 2007-09-10 Micha,Ak(Bl Cadilhac <michael@cadilhac.name> * progmodes/meta-mode.el (meta-font-lock-keywords)
--- a/lisp/outline.el Mon Sep 10 17:34:24 2007 +0000 +++ b/lisp/outline.el Mon Sep 10 18:21:58 2007 +0000 @@ -187,12 +187,12 @@ :group 'outlines) (defface outline-4 - '((t :inherit font-lock-builtin-face)) + '((t :inherit font-lock-comment-face)) "Level 4." :group 'outlines) (defface outline-5 - '((t :inherit font-lock-comment-face)) + '((t :inherit font-lock-type-face)) "Level 5." :group 'outlines) @@ -202,7 +202,7 @@ :group 'outlines) (defface outline-7 - '((t :inherit font-lock-type-face)) + '((t :inherit font-lock-builtin-face)) "Level 7." :group 'outlines)