# HG changeset patch # User Jason Rumney # Date 1211467978 0 # Node ID 8c06bfa2117ac50a586e48a7343eb8364e5a9395 # Parent 93de3f6c1a6c4d0b53e701ba46cfaad560f5fdb9 * 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 93de3f6c1a6c -r 8c06bfa2117a src/macfns.c --- a/src/macfns.c Thu May 22 14:52:49 2008 +0000 +++ b/src/macfns.c Thu May 22 14:52:58 2008 +0000 @@ -105,7 +105,7 @@ int image_cache_refcount, dpyinfo_refcount; #endif -#if 0 /* Use xstricmp instead. */ +#if 0 /* Use xstrcasecmp instead. */ /* compare two strings ignoring case */ static int @@ -1011,7 +1011,7 @@ BLOCK_INPUT; for (i = 0; i < sizeof (mac_color_map) / sizeof (mac_color_map[0]); i++) - if (xstricmp (colorname, mac_color_map[i].name) == 0) + if (xstrcasecmp (colorname, mac_color_map[i].name) == 0) { ret = make_number (mac_color_map[i].color); break;