aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-07-18 19:07:15 +0000
committerGerd Moellmann2000-07-18 19:07:15 +0000
commit94354bddf174dff4d076ccb37c8ec3b03d9233ce (patch)
treeb53ce11f9f0a48bb6dc776e19cb3d333fbc8701e
parent85a8aca9a7cc0cbf933ce2092245fe4143ce51d6 (diff)
downloademacs-94354bddf174dff4d076ccb37c8ec3b03d9233ce.tar.gz
emacs-94354bddf174dff4d076ccb37c8ec3b03d9233ce.zip
(face-font-selection-order)
(face-font-family-alternatives): Add custom type.
-rw-r--r--lisp/faces.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index 2fbe89ca9fa..48ec17c3b85 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -50,6 +50,7 @@ example, if `:slant' appears before `:height', font selection first
50tries to find a font with a suitable slant, even if this results in 50tries to find a font with a suitable slant, even if this results in
51a font height that isn't optimal." 51a font height that isn't optimal."
52 :tag "Font selection order." 52 :tag "Font selection order."
53 :type '(list symbol symbol symbol symbol)
53 :group 'font-selection 54 :group 'font-selection
54 :set #'(lambda (symbol value) 55 :set #'(lambda (symbol value)
55 (set-default symbol value) 56 (set-default symbol value)
@@ -64,6 +65,7 @@ Each element has the the form (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...).
64If fonts of family FAMILY can't be loaded, try ALTERNATIVE1, then 65If fonts of family FAMILY can't be loaded, try ALTERNATIVE1, then
65ALTERNATIVE2 etc." 66ALTERNATIVE2 etc."
66 :tag "Alternative font families to try." 67 :tag "Alternative font families to try."
68 :type '(repeat (repeat string))
67 :group 'font-selection 69 :group 'font-selection
68 :set #'(lambda (symbol value) 70 :set #'(lambda (symbol value)
69 (set-default symbol value) 71 (set-default symbol value)