aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/fontset.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/fontset.c b/src/fontset.c
index 9ce29736072..d1819cc0385 100644
--- a/src/fontset.c
+++ b/src/fontset.c
@@ -37,6 +37,9 @@ Lisp_Object Vfontset_alias_alist;
37Lisp_Object Vhighlight_wrong_size_font; 37Lisp_Object Vhighlight_wrong_size_font;
38Lisp_Object Vclip_large_size_font; 38Lisp_Object Vclip_large_size_font;
39 39
40/* Used as a temporary in macro FS_LOAD_FONT. */
41int font_idx_temp;
42
40/* We had better have our own strcasecmp function because some system 43/* We had better have our own strcasecmp function because some system
41 doesn't have it. */ 44 doesn't have it. */
42static char my_strcasetbl[256]; 45static char my_strcasetbl[256];
@@ -114,7 +117,10 @@ free_fontset_data (fontset_data)
114 If loading fails, return 0; 117 If loading fails, return 0;
115 If FONTNAME is NULL, the name is taken from the information of FONTSET. 118 If FONTNAME is NULL, the name is taken from the information of FONTSET.
116 If FONTSET is given, try to load a font whose size matches that of 119 If FONTSET is given, try to load a font whose size matches that of
117 FONTSET, and, the font index is stored in the table for FONTSET. */ 120 FONTSET, and, the font index is stored in the table for FONTSET.
121
122 If you give FONTSET argument, don't call this function directry,
123 instead call macro FS_LOAD_FONT with the same argument. */
118 124
119struct font_info * 125struct font_info *
120fs_load_font (f, font_table, charset, fontname, fontset) 126fs_load_font (f, font_table, charset, fontname, fontset)