# HG changeset patch # User Juri Linkov # Date 1137979175 0 # Node ID e3989d3241d5bd0ea2044e801b5e84fd0be708df # Parent acccd9689759f8cc08d41c257f61f2a5c7833c05 (info-xref): Inherit from `link'. (info-xref-visited): Inherit from `link-visited'. diff -r acccd9689759 -r e3989d3241d5 lisp/info.el --- a/lisp/info.el Mon Jan 23 01:16:57 2006 +0000 +++ b/lisp/info.el Mon Jan 23 01:19:35 2006 +0000 @@ -129,21 +129,14 @@ (put 'info-menu-5 'face-alias 'info-menu-star) (defface info-xref - '((((min-colors 88) - (class color) (background light)) :foreground "blue1" :underline t) - (((class color) (background light)) :foreground "blue" :underline t) - (((min-colors 88) - (class color) (background dark)) :foreground "cyan1" :underline t) - (((class color) (background dark)) :foreground "cyan" :underline t) - (t :underline t)) - "Face for Info cross-references." + '((t :inherit link)) + "Face for unvisited Info cross-references." :group 'info) (defface info-xref-visited - '((default :inherit info-xref) - (((class color) (background light)) :foreground "magenta4") - (((class color) (background dark)) :foreground "violet")) + '((t :inherit link-visited)) "Face for visited Info cross-references." + :version "22.1" :group 'info) (defcustom Info-fontify-visited-nodes t