From: Miles Bader Date: Wed, 20 Sep 2000 08:44:46 +0000 (+0000) Subject: (info-header-node): Tweak for color ttys. X-Git-Tag: emacs-pretest-21.0.90~1498 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8cc4cac1977bde2560da3642c24e394b77e15b1b;p=emacs.git (info-header-node): Tweak for color ttys. --- diff --git a/lisp/info.el b/lisp/info.el index 28ec2ca5e98..156363efdc9 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -97,7 +97,11 @@ A header-line does not scroll with the rest of the buffer." :group 'info) (defface info-header-node - '((t (:inherit info-node))) + '(;; Because header-lines on tty's are usually reverse-video, the + ;; normal info-node colors probably won't look good, so just stick + ;; with bold-italic + (((type tty) (class color)) (:bold t :italic t)) + (t (:inherit info-node))) "Face for Info nodes in a node header." :group 'info)