[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Using strcasecmp in xterm.c
From: |
Kim F. Storm |
Subject: |
Using strcasecmp in xterm.c |
Date: |
Thu, 07 Dec 2006 10:09:09 +0100 |
User-agent: |
Gnus/5.11 (Gnus v5.11) Emacs/22.0.91 (gnu/linux) |
In xterm.c, we use strcasecmp here:
struct font_info *
x_query_font (f, fontname)
struct frame *f;
register char *fontname;
{
struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
int i;
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)))
return (dpyinfo->font_table + i);
return NULL;
}
Shouldn't this use xstricmp which is specifically defined to compare
fontnames according to the comment in xfaces.c ?
/* Like stricmp. Used to compare parts of font names which are in
ISO8859-1. */
int
xstricmp (s1, s2)
--
Kim F. Storm <address@hidden> http://www.cua.dk
- Using strcasecmp in xterm.c,
Kim F. Storm <=