From: Lars Magne Ingebrigtsen Date: Tue, 5 Jul 2011 14:25:21 +0000 (+0200) Subject: * font-lock.el (font-lock-builtin-face): Change from Orchid to X-Git-Url: http://git.hcoop.net/bpt/emacs.git/commitdiff_plain/bad327838e4dc10e22960faa0e9d830a5f8242f9 * font-lock.el (font-lock-builtin-face): Change from Orchid to MediumBlue on light-coloured backgrounds to avoid confusion with the doc string. Fixes: debbugs:6693 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 701cec11c2..d6455a9e6f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2011-07-05 Lars Magne Ingebrigtsen + + * font-lock.el (font-lock-builtin-face): Change from Orchid to + MediumBlue on light-coloured backgrounds to avoid confusion with + the doc string (bug#6693). + 2011-07-05 Juanma Barranquero * obsolete/old-emacs-lock.el: Rename from emacs-lock.el. diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 3743dd54b7..2175aee03d 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -1906,7 +1906,7 @@ Sets various variables using `font-lock-defaults' and (((class grayscale) (background dark)) (:foreground "DimGray" :weight bold)) (((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 light)) (:foreground "MediumBlue")) (((class color) (min-colors 16) (background dark)) (:foreground "LightSteelBlue")) (((class color) (min-colors 8)) (:foreground "blue" :weight bold)) (t (:weight bold)))