aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2005-11-03 22:29:43 +0000
committerDan Nicolaescu2005-11-03 22:29:43 +0000
commit11ec76b7ea67a1fe757ee857abc306525e25f34f (patch)
treed388de6d820e4c765419369cb848df82493f5017
parentb07e06865bf4713149114163edd7262c4b346580 (diff)
downloademacs-11ec76b7ea67a1fe757ee857abc306525e25f34f.tar.gz
emacs-11ec76b7ea67a1fe757ee857abc306525e25f34f.zip
(font-lock-warning-face): Use the more vivid red1,
not red.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/font-lock.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7009fd19b90..0aebd90e8c1 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12005-11-03 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * font-lock.el (font-lock-warning-face): Use the more vivid red1,
4 not red.
5
12005-11-04 Nick Roberts <nickrob@snap.net.nz> 62005-11-04 Nick Roberts <nickrob@snap.net.nz>
2 7
3 * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in 8 * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
diff --git a/lisp/font-lock.el b/lisp/font-lock.el
index eb830b048e0..a55eb96ec0d 100644
--- a/lisp/font-lock.el
+++ b/lisp/font-lock.el
@@ -1803,7 +1803,7 @@ Sets various variables using `font-lock-defaults' (or, if nil, using
1803(defface font-lock-warning-face 1803(defface font-lock-warning-face
1804 '((((class color) (min-colors 88) (background light)) (:foreground "Red1" :weight bold)) 1804 '((((class color) (min-colors 88) (background light)) (:foreground "Red1" :weight bold))
1805 (((class color) (min-colors 88) (background dark)) (:foreground "Pink" :weight bold)) 1805 (((class color) (min-colors 88) (background dark)) (:foreground "Pink" :weight bold))
1806 (((class color) (min-colors 16) (background light)) (:foreground "Red" :weight bold)) 1806 (((class color) (min-colors 16) (background light)) (:foreground "Red1" :weight bold))
1807 (((class color) (min-colors 16) (background dark)) (:foreground "Pink" :weight bold)) 1807 (((class color) (min-colors 16) (background dark)) (:foreground "Pink" :weight bold))
1808 (((class color) (min-colors 8)) (:foreground "red")) 1808 (((class color) (min-colors 8)) (:foreground "red"))
1809 (t (:inverse-video t :weight bold))) 1809 (t (:inverse-video t :weight bold)))