aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2006-01-23 01:19:35 +0000
committerJuri Linkov2006-01-23 01:19:35 +0000
commitde8ad208b1e42925d6e9ea237d9bbd02c02b21b0 (patch)
tree78226909eada2d5fa08637ded33d2bf218eb164e
parent59746720337654b8c8f3e9f235aec93ea8d62556 (diff)
downloademacs-de8ad208b1e42925d6e9ea237d9bbd02c02b21b0.tar.gz
emacs-de8ad208b1e42925d6e9ea237d9bbd02c02b21b0.zip
(info-xref): Inherit from `link'.
(info-xref-visited): Inherit from `link-visited'.
-rw-r--r--lisp/info.el15
1 files changed, 4 insertions, 11 deletions
diff --git a/lisp/info.el b/lisp/info.el
index 61d59741078..912e31f62ad 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -129,21 +129,14 @@ The Lisp code is executed when the node is selected.")
129(put 'info-menu-5 'face-alias 'info-menu-star) 129(put 'info-menu-5 'face-alias 'info-menu-star)
130 130
131(defface info-xref 131(defface info-xref
132 '((((min-colors 88) 132 '((t :inherit link))
133 (class color) (background light)) :foreground "blue1" :underline t) 133 "Face for unvisited Info cross-references."
134 (((class color) (background light)) :foreground "blue" :underline t)
135 (((min-colors 88)
136 (class color) (background dark)) :foreground "cyan1" :underline t)
137 (((class color) (background dark)) :foreground "cyan" :underline t)
138 (t :underline t))
139 "Face for Info cross-references."
140 :group 'info) 134 :group 'info)
141 135
142(defface info-xref-visited 136(defface info-xref-visited
143 '((default :inherit info-xref) 137 '((t :inherit link-visited))
144 (((class color) (background light)) :foreground "magenta4")
145 (((class color) (background dark)) :foreground "violet"))
146 "Face for visited Info cross-references." 138 "Face for visited Info cross-references."
139 :version "22.1"
147 :group 'info) 140 :group 'info)
148 141
149(defcustom Info-fontify-visited-nodes t 142(defcustom Info-fontify-visited-nodes t