aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii1999-12-06 18:00:33 +0000
committerEli Zaretskii1999-12-06 18:00:33 +0000
commit7a3abcd82982ec33587f72c54ddfaa097abf558d (patch)
treeef31fdfe474a624e0aa0cf89fded87e1fddc3ade
parent81da8b324961ff18fcd2e666b67e3c4e387251e4 (diff)
downloademacs-7a3abcd82982ec33587f72c54ddfaa097abf558d.tar.gz
emacs-7a3abcd82982ec33587f72c54ddfaa097abf558d.zip
(info-node, info-menu-5, info-xref): Define colors for Info faces if
the display supports them.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/info.el9
2 files changed, 11 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 36e9fb90c1b..bec164f7fd0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,10 @@
11999-12-06 Eli Zaretskii <eliz@is.elta.co.il> 11999-12-06 Eli Zaretskii <eliz@is.elta.co.il>
2 2
3 * info.el (info-node, info-menu-5, info-xref): Define colors for
4 Info faces if the display supports them.
5
61999-12-06 Eli Zaretskii <eliz@is.elta.co.il>
7
3 Changes for automatic remapping of X colors on terminal frames: 8 Changes for automatic remapping of X colors on terminal frames:
4 9
5 * term/pc-win.el (msdos-setup-initial-frame): New function, run by 10 * term/pc-win.el (msdos-setup-initial-frame): New function, run by
diff --git a/lisp/info.el b/lisp/info.el
index 8da9f0ad27e..c2eff14e424 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -61,17 +61,20 @@ The Lisp code is executed when the node is selected.")
61 :group 'info) 61 :group 'info)
62 62
63(defface info-node 63(defface info-node
64 '((t (:bold t :italic t))) 64 '((((class color)) (:foreground "brown" :bold t :italic t))
65 (t (:bold t :italic t)))
65 "Face for Info node names." 66 "Face for Info node names."
66 :group 'info) 67 :group 'info)
67 68
68(defface info-menu-5 69(defface info-menu-5
69 '((t (:underline t))) 70 '((((class color)) (:foreground "red1"))
71 (t (:underline t)))
70 "Face for the fifth and tenth `*' in an Info menu." 72 "Face for the fifth and tenth `*' in an Info menu."
71 :group 'info) 73 :group 'info)
72 74
73(defface info-xref 75(defface info-xref
74 '((t (:bold t))) 76 '((((class color)) (:foreground "magenta4" :bold t))
77 (t (:bold t)))
75 "Face for Info cross-references." 78 "Face for Info cross-references."
76 :group 'info) 79 :group 'info)
77 80