summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/ChangeLog.152
-rw-r--r--lisp/font-lock.el2
3 files changed, 7 insertions, 2 deletions
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 <cyd@stupidchicken.com>
+
+ * font-lock.el (font-lock-builtin-face): Change light background
+ color to dark slate blue (Bug#6693).
+
2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (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 <monkey@sandpframing.com> (tiny change)
+2010-08-08 MON KEY <monkey@sandpframing.com>
* 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"))