From: Eli Zaretskii Date: Mon, 6 Dec 1999 18:00:33 +0000 (+0000) Subject: (info-node, info-menu-5, info-xref): Define colors for Info faces if X-Git-Tag: emacs-pretest-21.0.90~5856 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7a3abcd82982ec33587f72c54ddfaa097abf558d;p=emacs.git (info-node, info-menu-5, info-xref): Define colors for Info faces if the display supports them. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 36e9fb90c1b..bec164f7fd0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +1999-12-06 Eli Zaretskii + + * info.el (info-node, info-menu-5, info-xref): Define colors for + Info faces if the display supports them. + 1999-12-06 Eli Zaretskii Changes for automatic remapping of X colors on terminal frames: 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.") :group 'info) (defface info-node - '((t (:bold t :italic t))) + '((((class color)) (:foreground "brown" :bold t :italic t)) + (t (:bold t :italic t))) "Face for Info node names." :group 'info) (defface info-menu-5 - '((t (:underline t))) + '((((class color)) (:foreground "red1")) + (t (:underline t))) "Face for the fifth and tenth `*' in an Info menu." :group 'info) (defface info-xref - '((t (:bold t))) + '((((class color)) (:foreground "magenta4" :bold t)) + (t (:bold t))) "Face for Info cross-references." :group 'info)