aboutsummaryrefslogtreecommitdiffstats
path: root/src/fontset.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fontset.c')
-rw-r--r--src/fontset.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/fontset.c b/src/fontset.c
index c7e5507f248..33e555eb518 100644
--- a/src/fontset.c
+++ b/src/fontset.c
@@ -973,9 +973,10 @@ check_fontset_name (name)
973 return FONTSET_FROM_ID (id); 973 return FONTSET_FROM_ID (id);
974} 974}
975 975
976DEFUN ("set-fontset-font", Fset_fontset_font, Sset_fontset_font, 3, 4, 0, 976DEFUN ("set-fontset-font", Fset_fontset_font Sset_fontset_font, 3, 4, 0,
977 doc: /* Modify fontset NAME to use FONTNAME for CHARACTER. 977 doc: /* Modify fontset NAME to use FONTNAME for CHARACTER.
978 978
979If NAME is nil, modify the default fontset.
979CHARACTER may be a cons; (FROM . TO), where FROM and TO are 980CHARACTER may be a cons; (FROM . TO), where FROM and TO are
980non-generic characters. In that case, use FONTNAME 981non-generic characters. In that case, use FONTNAME
981for all characters in the range FROM and TO (inclusive). 982for all characters in the range FROM and TO (inclusive).
@@ -1251,6 +1252,7 @@ accumulate_font_info (arg, character, elt)
1251 1252
1252DEFUN ("fontset-info", Ffontset_info, Sfontset_info, 1, 2, 0, 1253DEFUN ("fontset-info", Ffontset_info, Sfontset_info, 1, 2, 0,
1253 doc: /* Return information about a fontset named NAME on frame FRAME. 1254 doc: /* Return information about a fontset named NAME on frame FRAME.
1255If NAME is nil, return information about the default fontset.
1254The value is a vector: 1256The value is a vector:
1255 [ SIZE HEIGHT ((CHARSET-OR-RANGE FONT-SPEC OPENED ...) ...) ], 1257 [ SIZE HEIGHT ((CHARSET-OR-RANGE FONT-SPEC OPENED ...) ...) ],
1256where, 1258where,
@@ -1369,7 +1371,7 @@ If FRAME is omitted, it defaults to the currently selected frame. */)
1369 1371
1370DEFUN ("fontset-font", Ffontset_font, Sfontset_font, 2, 2, 0, 1372DEFUN ("fontset-font", Ffontset_font, Sfontset_font, 2, 2, 0,
1371 doc: /* Return a font name pattern for character CH in fontset NAME. 1373 doc: /* Return a font name pattern for character CH in fontset NAME.
1372If NAME is t, find a font name pattern in the default fontset. */) 1374If NAME is nil, find a font name pattern in the default fontset. */)
1373 (name, ch) 1375 (name, ch)
1374 Lisp_Object name, ch; 1376 Lisp_Object name, ch;
1375{ 1377{