aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorAndreas Schwab <[email protected]>2008-06-25 00:39:59 +0000
committerAndreas Schwab <[email protected]>2008-06-25 00:39:59 +0000
commited008205fc064e0fda74421e1a4f1037c7edde1e (patch)
tree8105aa34b8039e1785744f3ff994c1eac0c7a6fb /lisp
parent65c108e4565b6070c1e090c18d6bb3d34e89f852 (diff)
(face-font-family-alternatives, variable-pitch): Use
"Sans Serif", not "Sans-Serif".
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/faces.el6
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0b28ea2e5b..585b4b3ebe 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2008-06-25 Andreas Schwab <[email protected]>
+
+ * faces.el (face-font-family-alternatives, variable-pitch): Use
+ "Sans Serif", not "Sans-Serif".
+
2008-06-24 Chong Yidong <[email protected]>
* faces.el (face-font-family-alternatives, variable-pitch): Change
diff --git a/lisp/faces.el b/lisp/faces.el
index 25493c6150..aa18e29582 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -59,13 +59,13 @@ a font height that isn't optimal."
(internal-set-font-selection-order value)))
-;; In the absence of Fontconfig support, Monospace and Sans-Serif are
+;; In the absence of Fontconfig support, Monospace and Sans Serif are
;; unavailable, and we fall back on the courier and helv families,
;; which are generally available.
(defcustom face-font-family-alternatives
'(("Monospace" "courier" "fixed")
("courier" "fixed")
- ("Sans-Serif" "helv" "helvetica" "arial" "fixed")
+ ("Sans Serif" "helv" "helvetica" "arial" "fixed")
("helv" "helvetica" "arial" "fixed"))
"*Alist of alternative font family names.
Each element has the form (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...).
@@ -2229,7 +2229,7 @@ terminal type to a different value."
:group 'basic-faces)
(defface variable-pitch
- '((t :family "Sans-Serif"))
+ '((t :family "Sans Serif"))
"The basic variable-pitch face."
:group 'basic-faces)