aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)