summaryrefslogtreecommitdiff
path: root/lisp/info.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2001-12-31 20:43:36 +0000
committerRichard M. Stallman <rms@gnu.org>2001-12-31 20:43:36 +0000
commit58b64ac7d948b58b5fa0c1b5f7fce04a3f5b2652 (patch)
treeb2db34f78f205eacc4f73e3d6e58b8f0207c5b48 /lisp/info.el
parentfeaf529aceb9551f743ccea8f053383ed35c395e (diff)
downloademacs-58b64ac7d948b58b5fa0c1b5f7fce04a3f5b2652.tar.gz
(various face definitions): Use :weight and :slant.
Diffstat (limited to 'lisp/info.el')
-rw-r--r--lisp/info.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/info.el b/lisp/info.el
index 7bbfcd9e79e..9ce5bb7ea44 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -61,9 +61,9 @@ The Lisp code is executed when the node is selected.")
:group 'info)
(defface info-node
- '((((class color) (background light)) (:foreground "brown" :bold t :italic t))
- (((class color) (background dark)) (:foreground "white" :bold t :italic t))
- (t (:bold t :italic t)))
+ '((((class color) (background light)) (:foreground "brown" :weight bold :slant italic))
+ (((class color) (background dark)) (:foreground "white" :weight bold :slant italic))
+ (t (:weight bold :slant italic)))
"Face for Info node names."
:group 'info)
@@ -74,9 +74,9 @@ The Lisp code is executed when the node is selected.")
:group 'info)
(defface info-xref
- '((((class color) (background light)) (:foreground "magenta4" :bold t))
- (((class color) (background dark)) (:foreground "cyan" :bold t))
- (t (:bold t)))
+ '((((class color) (background light)) (:foreground "magenta4" :weight bold))
+ (((class color) (background dark)) (:foreground "cyan" :weight bold))
+ (t (:weight bold)))
"Face for Info cross-references."
:group 'info)