diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-09-10 18:21:58 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-09-10 18:21:58 +0000 |
commit | 9c9344319ef4eb058e6f238a4acca41042abf56c (patch) | |
tree | a6574b2b769176c4d1ea7706e857351ddbfea336 | |
parent | 5632bd0fc4b3f06fff0ce55d53675f285b6a43d2 (diff) | |
download | emacs-9c9344319ef4eb058e6f238a4acca41042abf56c.tar.gz |
(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.
-rw-r--r-- | lisp/ChangeLog | 6 | ||||
-rw-r--r-- | lisp/outline.el | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c4e6741e4f4..61ff8ec83e6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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) diff --git a/lisp/outline.el b/lisp/outline.el index 294de86ec25..013b0ae9505 100644 --- a/lisp/outline.el +++ b/lisp/outline.el @@ -187,12 +187,12 @@ in the file it applies to." :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 @@ in the file it applies to." :group 'outlines) (defface outline-7 - '((t :inherit font-lock-type-face)) + '((t :inherit font-lock-builtin-face)) "Level 7." :group 'outlines) |