0
0
mirror of https://github.com/vim/vim.git synced 2025-10-02 05:04:20 -04:00

updated for version 7.0079

This commit is contained in:
Bram Moolenaar
2005-06-04 22:06:24 +00:00
parent 51485f0624
commit 75c50c46a6
21 changed files with 152 additions and 100 deletions

View File

@@ -375,11 +375,13 @@ ignorecase(pat)
#endif
if (*p == '\\' && p[1] != NUL) /* skip "\S" et al. */
p += 2;
else if (isupper(*p++))
else if (isupper(*p))
{
ic = FALSE;
break;
}
else
++p;
}
}
no_smartcase = FALSE;