comparison lisp/info.el @ 42455:7662f312caf2

(various face definitions): Use :weight and :slant.
author Richard M. Stallman <rms@gnu.org>
date Mon, 31 Dec 2001 20:43:36 +0000
parents c629dcecd1ca
children 5de6df44f85f
comparison
equal deleted inserted replaced
42454:0aa467a4e4be 42455:7662f312caf2
59 "*Non-nil enables highlighting and fonts in Info nodes." 59 "*Non-nil enables highlighting and fonts in Info nodes."
60 :type 'boolean 60 :type 'boolean
61 :group 'info) 61 :group 'info)
62 62
63 (defface info-node 63 (defface info-node
64 '((((class color) (background light)) (:foreground "brown" :bold t :italic t)) 64 '((((class color) (background light)) (:foreground "brown" :weight bold :slant italic))
65 (((class color) (background dark)) (:foreground "white" :bold t :italic t)) 65 (((class color) (background dark)) (:foreground "white" :weight bold :slant italic))
66 (t (:bold t :italic t))) 66 (t (:weight bold :slant italic)))
67 "Face for Info node names." 67 "Face for Info node names."
68 :group 'info) 68 :group 'info)
69 69
70 (defface info-menu-5 70 (defface info-menu-5
71 '((((class color)) (:foreground "red1")) 71 '((((class color)) (:foreground "red1"))
72 (t (:underline t))) 72 (t (:underline t)))
73 "Face for the fifth and nineth `*' in an Info menu." 73 "Face for the fifth and nineth `*' in an Info menu."
74 :group 'info) 74 :group 'info)
75 75
76 (defface info-xref 76 (defface info-xref
77 '((((class color) (background light)) (:foreground "magenta4" :bold t)) 77 '((((class color) (background light)) (:foreground "magenta4" :weight bold))
78 (((class color) (background dark)) (:foreground "cyan" :bold t)) 78 (((class color) (background dark)) (:foreground "cyan" :weight bold))
79 (t (:bold t))) 79 (t (:weight bold)))
80 "Face for Info cross-references." 80 "Face for Info cross-references."
81 :group 'info) 81 :group 'info)
82 82
83 (defcustom Info-fontify-maximum-menu-size 100000 83 (defcustom Info-fontify-maximum-menu-size 100000
84 "*Maximum size of menu to fontify if `Info-fontify' is non-nil." 84 "*Maximum size of menu to fontify if `Info-fontify' is non-nil."