0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

updated for version 7.1-061

This commit is contained in:
Bram Moolenaar
2007-08-11 11:58:23 +00:00
parent 48cc5fe8b6
commit a245a5bb06
4 changed files with 26 additions and 17 deletions

View File

@@ -2320,7 +2320,7 @@ mb_strnicmp(s1, s2, nn)
/* Single byte: first check normally, then with ignore case. */
if (s1[i] != s2[i])
{
cdiff = TOLOWER_LOC(s1[i]) - TOLOWER_LOC(s2[i]);
cdiff = MB_TOLOWER(s1[i]) - MB_TOLOWER(s2[i]);
if (cdiff != 0)
return cdiff;
}