aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2000-09-20 08:44:46 +0000
committerMiles Bader2000-09-20 08:44:46 +0000
commit8cc4cac1977bde2560da3642c24e394b77e15b1b (patch)
tree04893a9aade17cbfccd93ea558e97473f912c39d
parent37a99821999c7198aeff9bb68b159c3e5fcf1b60 (diff)
downloademacs-8cc4cac1977bde2560da3642c24e394b77e15b1b.tar.gz
emacs-8cc4cac1977bde2560da3642c24e394b77e15b1b.zip
(info-header-node): Tweak for color ttys.
-rw-r--r--lisp/info.el6
1 files changed, 5 insertions, 1 deletions
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."
97 :group 'info) 97 :group 'info)
98 98
99(defface info-header-node 99(defface info-header-node
100 '((t (:inherit info-node))) 100 '(;; Because header-lines on tty's are usually reverse-video, the
101 ;; normal info-node colors probably won't look good, so just stick
102 ;; with bold-italic
103 (((type tty) (class color)) (:bold t :italic t))
104 (t (:inherit info-node)))
101 "Face for Info nodes in a node header." 105 "Face for Info nodes in a node header."
102 :group 'info) 106 :group 'info)
103 107