diff src/xterm.c @ 74479:e3cccb27ecd2

(x_query_font): Use xstricmp instead off strcasecmp.
author Kenichi Handa <handa@m17n.org>
date Fri, 08 Dec 2006 00:56:01 +0000
parents 5d7f02605edd
children 49eed408d9b7
line wrap: on
line diff
--- a/src/xterm.c	Fri Dec 08 00:39:01 2006 +0000
+++ b/src/xterm.c	Fri Dec 08 00:56:01 2006 +0000
@@ -10203,8 +10203,8 @@
 
   for (i = 0; i < dpyinfo->n_fonts; i++)
     if (dpyinfo->font_table[i].name
-	&& (!strcasecmp (dpyinfo->font_table[i].name, fontname)
-	    || !strcasecmp (dpyinfo->font_table[i].full_name, fontname)))
+	&& (!xstricmp (dpyinfo->font_table[i].name, fontname)
+	    || !xstricmp (dpyinfo->font_table[i].full_name, fontname)))
       return (dpyinfo->font_table + i);
   return NULL;
 }