aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2011-07-05 16:25:21 +0200
committerLars Magne Ingebrigtsen2011-07-05 16:25:21 +0200
commitbad327838e4dc10e22960faa0e9d830a5f8242f9 (patch)
tree99b74ba36591a9c00167ef53dedaac9abffaede4
parenta1479eac569994eda72c24d4d0061e876a039881 (diff)
downloademacs-bad327838e4dc10e22960faa0e9d830a5f8242f9.tar.gz
emacs-bad327838e4dc10e22960faa0e9d830a5f8242f9.zip
* 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
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/font-lock.el2
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 701cec11c2e..d6455a9e6f2 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12011-07-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * font-lock.el (font-lock-builtin-face): Change from Orchid to
4 MediumBlue on light-coloured backgrounds to avoid confusion with
5 the doc string (bug#6693).
6
12011-07-05 Juanma Barranquero <lekktu@gmail.com> 72011-07-05 Juanma Barranquero <lekktu@gmail.com>
2 8
3 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el. 9 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
diff --git a/lisp/font-lock.el b/lisp/font-lock.el
index 3743dd54b7a..2175aee03df 100644
--- a/lisp/font-lock.el
+++ b/lisp/font-lock.el
@@ -1906,7 +1906,7 @@ Sets various variables using `font-lock-defaults' and
1906 (((class grayscale) (background dark)) (:foreground "DimGray" :weight bold)) 1906 (((class grayscale) (background dark)) (:foreground "DimGray" :weight bold))
1907 (((class color) (min-colors 88) (background light)) (:foreground "dark slate blue")) 1907 (((class color) (min-colors 88) (background light)) (:foreground "dark slate blue"))
1908 (((class color) (min-colors 88) (background dark)) (:foreground "LightSteelBlue")) 1908 (((class color) (min-colors 88) (background dark)) (:foreground "LightSteelBlue"))
1909 (((class color) (min-colors 16) (background light)) (:foreground "Orchid")) 1909 (((class color) (min-colors 16) (background light)) (:foreground "MediumBlue"))
1910 (((class color) (min-colors 16) (background dark)) (:foreground "LightSteelBlue")) 1910 (((class color) (min-colors 16) (background dark)) (:foreground "LightSteelBlue"))
1911 (((class color) (min-colors 8)) (:foreground "blue" :weight bold)) 1911 (((class color) (min-colors 8)) (:foreground "blue" :weight bold))
1912 (t (:weight bold))) 1912 (t (:weight bold)))