(variable-pitch): Use "Sans" family.
(face-font-family-alternatives): Define alternatives for "Sans"
and "Monospace".
;; This is defined originally in xfaces.c.
(defcustom face-font-family-alternatives
- '(("courier" "fixed")
+ '(("Monospace" "courier" "fixed")
+ ("courier" "fixed")
+ ("Sans" "helv" "helvetica" "arial" "fixed")
("helv" "helvetica" "arial" "fixed"))
"*Alist of alternative font family names.
Each element has the form (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...).
:group 'basic-faces)
(defface fixed-pitch
- '((t :family "courier"))
+ '((t :family "Monospace"))
"The basic fixed-pitch face."
:group 'basic-faces)
(defface variable-pitch
- '((t :family "helv"))
+ '((t :family "Sans"))
"The basic variable-pitch face."
:group 'basic-faces)