changeset 18346:c46e9f750033

(font_idx_temp): New temprary variable used in FS_LOAD_FONT.
author Kenichi Handa <handa@m17n.org>
date Sat, 21 Jun 1997 00:45:09 +0000
parents 6e93b01c3883
children b7024f44f5d2
files src/fontset.c
diffstat 1 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/fontset.c	Sat Jun 21 00:44:42 1997 +0000
+++ b/src/fontset.c	Sat Jun 21 00:45:09 1997 +0000
@@ -37,6 +37,9 @@
 Lisp_Object Vhighlight_wrong_size_font;
 Lisp_Object Vclip_large_size_font;
 
+/* Used as a temporary in macro FS_LOAD_FONT.  */
+int font_idx_temp;
+
 /* We had better have our own strcasecmp function because some system
    doesn't have it.  */
 static char my_strcasetbl[256];
@@ -114,7 +117,10 @@
    If loading fails, return 0;
    If FONTNAME is NULL, the name is taken from the information of FONTSET.
    If FONTSET is given, try to load a font whose size matches that of
-   FONTSET, and, the font index is stored in the table for FONTSET.  */
+   FONTSET, and, the font index is stored in the table for FONTSET.
+
+   If you give FONTSET argument, don't call this function directry,
+   instead call macro FS_LOAD_FONT with the same argument.  */
 
 struct font_info *
 fs_load_font (f, font_table, charset, fontname, fontset)