Mercurial > emacs
changeset 95222:005a1655f51e
* 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.
author | Jason Rumney <jasonr@gnu.org> |
---|---|
date | Thu, 22 May 2008 14:54:27 +0000 |
parents | 063d15c54b69 |
children | b1c20ce02fa2 |
files | src/xfont.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 ();