From 8cc4cac1977bde2560da3642c24e394b77e15b1b Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Wed, 20 Sep 2000 08:44:46 +0000 Subject: [PATCH] (info-header-node): Tweak for color ttys. --- lisp/info.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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) -- 2.39.2