diff options
| -rw-r--r-- | src/fontset.c | 8 |
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; | |||
| 37 | Lisp_Object Vhighlight_wrong_size_font; | 37 | Lisp_Object Vhighlight_wrong_size_font; |
| 38 | Lisp_Object Vclip_large_size_font; | 38 | Lisp_Object Vclip_large_size_font; |
| 39 | 39 | ||
| 40 | /* Used as a temporary in macro FS_LOAD_FONT. */ | ||
| 41 | int 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. */ |
| 42 | static char my_strcasetbl[256]; | 45 | static 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 | ||
| 119 | struct font_info * | 125 | struct font_info * |
| 120 | fs_load_font (f, font_table, charset, fontname, fontset) | 126 | fs_load_font (f, font_table, charset, fontname, fontset) |