# HG changeset patch # User Jason Rumney # Date 1211463373 0 # Node ID 675ce1a056eed25a3e6d3e4c62b89fb5e7a3b0d3 # Parent 55ae253968bc6ee3f9a0dd4f7f6af33d4639637f (fs_query_fontset): Use xstricmp. diff -r 55ae253968bc -r 675ce1a056ee src/fontset.c --- a/src/fontset.c Thu May 22 13:35:54 2008 +0000 +++ b/src/fontset.c Thu May 22 13:36:13 2008 +0000 @@ -1082,7 +1082,7 @@ this_name = FONTSET_NAME (fontset); if (name_pattern == 1 ? fast_string_match_ignore_case (name, this_name) >= 0 - : !strcasecmp (SDATA (name), SDATA (this_name))) + : !xstricmp (SDATA (name), SDATA (this_name))) return i; } return -1;