aboutsummaryrefslogtreecommitdiffstats
path: root/src/font.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/font.c')
-rw-r--r--src/font.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/font.c b/src/font.c
index 9fe7c26ea9c..36e71669453 100644
--- a/src/font.c
+++ b/src/font.c
@@ -5415,19 +5415,19 @@ Each element has the form:
5415 [NUMERIC-VALUE SYMBOLIC-NAME ALIAS-NAME ...] 5415 [NUMERIC-VALUE SYMBOLIC-NAME ALIAS-NAME ...]
5416NUMERIC-VALUE is an integer, and SYMBOLIC-NAME and ALIAS-NAME are symbols. */); 5416NUMERIC-VALUE is an integer, and SYMBOLIC-NAME and ALIAS-NAME are symbols. */);
5417 Vfont_weight_table = BUILD_STYLE_TABLE (weight_table); 5417 Vfont_weight_table = BUILD_STYLE_TABLE (weight_table);
5418 XSYMBOL (intern_c_string ("font-weight-table"))->constant = 1; 5418 make_symbol_constant (intern_c_string ("font-weight-table"));
5419 5419
5420 DEFVAR_LISP_NOPRO ("font-slant-table", Vfont_slant_table, 5420 DEFVAR_LISP_NOPRO ("font-slant-table", Vfont_slant_table,
5421 doc: /* Vector of font slant symbols vs the corresponding numeric values. 5421 doc: /* Vector of font slant symbols vs the corresponding numeric values.
5422See `font-weight-table' for the format of the vector. */); 5422See `font-weight-table' for the format of the vector. */);
5423 Vfont_slant_table = BUILD_STYLE_TABLE (slant_table); 5423 Vfont_slant_table = BUILD_STYLE_TABLE (slant_table);
5424 XSYMBOL (intern_c_string ("font-slant-table"))->constant = 1; 5424 make_symbol_constant (intern_c_string ("font-slant-table"));
5425 5425
5426 DEFVAR_LISP_NOPRO ("font-width-table", Vfont_width_table, 5426 DEFVAR_LISP_NOPRO ("font-width-table", Vfont_width_table,
5427 doc: /* Alist of font width symbols vs the corresponding numeric values. 5427 doc: /* Alist of font width symbols vs the corresponding numeric values.
5428See `font-weight-table' for the format of the vector. */); 5428See `font-weight-table' for the format of the vector. */);
5429 Vfont_width_table = BUILD_STYLE_TABLE (width_table); 5429 Vfont_width_table = BUILD_STYLE_TABLE (width_table);
5430 XSYMBOL (intern_c_string ("font-width-table"))->constant = 1; 5430 make_symbol_constant (intern_c_string ("font-width-table"));
5431 5431
5432 staticpro (&font_style_table); 5432 staticpro (&font_style_table);
5433 font_style_table = make_uninit_vector (3); 5433 font_style_table = make_uninit_vector (3);