mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-23 04:53:12 -08:00
(fs_query_fontset): Use xstricmp.
This commit is contained in:
parent
61a540f538
commit
28f4e99c8c
1 changed files with 1 additions and 1 deletions
|
|
@ -1082,7 +1082,7 @@ fs_query_fontset (name, name_pattern)
|
|||
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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue