commit | a245a5bb06a5e3aec2ed0cf177c79438ee17f4ed | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Aug 11 11:58:23 2007 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Aug 11 11:58:23 2007 +0000 |
tree | cde833f103fa1d2187a07c540674b4d04b3221e3 | |
parent | 48cc5fe8b6c65667f620c91dc6a2e2c2e12afb66 [diff] [blame] |
updated for version 7.1-061
diff --git a/src/mbyte.c b/src/mbyte.c index 7edab44..bf6fbb3 100644 --- a/src/mbyte.c +++ b/src/mbyte.c
@@ -2320,7 +2320,7 @@ /* 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; }