# HG changeset patch # User Miles Bader # Date 969256472 0 # Node ID c7b40c9887c992dee63ff45e3a974a1dc47e76f8 # Parent f89c2fe5fb385c620dd683891bee603a7cd67de3 (Info-title-3-face, Info-title-2-face, Info-title-1-face): Use face inheritance and relative sizes instead of hard-wiring things. diff -r f89c2fe5fb38 -r c7b40c9887c9 lisp/info.el --- a/lisp/info.el Mon Sep 18 05:48:14 2000 +0000 +++ b/lisp/info.el Mon Sep 18 05:54:32 2000 +0000 @@ -2340,17 +2340,17 @@ (Info-goto-emacs-command-node command))))) (defface Info-title-1-face - '((t (:family "helv" :height 240 :weight bold))) + '((t (:height 1.2 :inherit Info-title-2-face))) "Face for Info titles at level 1." :group 'info) (defface Info-title-2-face - '((t (:family "helv" :height 180 :weight bold))) + '((t (:height 1.2 :inherit Info-title-3-face))) "Face for Info titles at level 2." :group 'info) (defface Info-title-3-face - '((t (:family "helv" :height 160 :weight bold))) + '((t (:height 1.2 :weight bold :inherit variable-pitch))) "Face for Info titles at level 3." :group 'info)