From: Stefan Monnier Date: Mon, 10 Sep 2007 18:21:58 +0000 (+0000) Subject: (outline-4, outline-5, outline-7): X-Git-Tag: emacs-pretest-23.0.90~10979 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9c9344319ef4eb058e6f238a4acca41042abf56c;p=emacs.git (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. --- 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 + + * 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 * 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)