From: Chong Yidong Date: Mon, 4 Jul 2011 20:00:56 +0000 (-0400) Subject: * font-lock.el (font-lock-builtin-face): Change light background color X-Git-Tag: emacs-pretest-24.0.90~104^2~152^2~187 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2f11b3f1ced845106f0aac930337c6e38725918d;p=emacs.git * font-lock.el (font-lock-builtin-face): Change light background color to dark slate blue. Fixes: debbugs:6693 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2be81a92c90..4532eb64d9c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2011-07-04 Chong Yidong + + * font-lock.el (font-lock-builtin-face): Change light background + color to dark slate blue (Bug#6693). + 2011-07-04 Wang Diancheng (tiny change) * progmodes/gdb-mi.el (gdb): Use completion-at-point. diff --git a/lisp/ChangeLog.15 b/lisp/ChangeLog.15 index 3cb6c00b6ee..190be56dd09 100644 --- a/lisp/ChangeLog.15 +++ b/lisp/ChangeLog.15 @@ -8424,7 +8424,7 @@ * dabbrev.el (dabbrev-completion): Fix typo in docstring. -2010-08-08 MON KEY (tiny change) +2010-08-08 MON KEY * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos): Fix typo in docstring (bug#6747). diff --git a/lisp/font-lock.el b/lisp/font-lock.el index e4dc6f11479..3743dd54b7a 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -1904,7 +1904,7 @@ Sets various variables using `font-lock-defaults' and (defface font-lock-builtin-face '((((class grayscale) (background light)) (:foreground "LightGray" :weight bold)) (((class grayscale) (background dark)) (:foreground "DimGray" :weight bold)) - (((class color) (min-colors 88) (background light)) (:foreground "MediumOrchid4")) + (((class color) (min-colors 88) (background light)) (:foreground "dark slate blue")) (((class color) (min-colors 88) (background dark)) (:foreground "LightSteelBlue")) (((class color) (min-colors 16) (background light)) (:foreground "Orchid")) (((class color) (min-colors 16) (background dark)) (:foreground "LightSteelBlue"))