# HG changeset patch # User Jason Rumney # Date 1211468067 0 # Node ID 005a1655f51e1ae2e825312dd273f58c89042d0b # Parent 063d15c54b69c6f1a83a9faa84952e8e01369306 * dispextern.h, xfaces.c (xstrcasecmp): Renamed from xstricmp. * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c: * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c: * xfns.c, xfont.c: Callers changed. diff -r 063d15c54b69 -r 005a1655f51e src/xfont.c --- a/src/xfont.c Thu May 22 14:54:17 2008 +0000 +++ b/src/xfont.c Thu May 22 14:54:27 2008 +0000 @@ -206,7 +206,7 @@ static int compare_font_names (const void *name1, const void *name2) { - return xstricmp (*(const char **) name1, *(const char **) name2); + return xstrcasecmp (*(const char **) name1, *(const char **) name2); } static Lisp_Object xfont_list_pattern P_ ((Lisp_Object, Display *, char *)); @@ -253,7 +253,7 @@ Lisp_Object entity; int result; - if (i > 0 && xstricmp (indices[i - 1], indices[i]) == 0) + if (i > 0 && xstrcasecmp (indices[i - 1], indices[i]) == 0) continue; entity = font_make_entity ();