Mercurial > emacs
changeset 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 | a4a6a88fed98 |
children | fdf5f8fbb805 |
files | src/xterm.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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; }