# HG changeset patch # User Miles Bader # Date 969439486 0 # Node ID e3d01cb9b0181082963d8f055e3454417b6eaebc # Parent 5c9c08a66da80c6c290f1db2d88a4c766048fa3f (info-header-node): Tweak for color ttys. diff -r 5c9c08a66da8 -r e3d01cb9b018 lisp/info.el --- a/lisp/info.el Wed Sep 20 07:42:51 2000 +0000 +++ b/lisp/info.el Wed Sep 20 08:44:46 2000 +0000 @@ -97,7 +97,11 @@ :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)