0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.1-055

This commit is contained in:
Bram Moolenaar
2007-08-06 20:28:43 +00:00
parent a064ac8501
commit 452a81b413
8 changed files with 14 additions and 11 deletions

View File

@@ -8635,7 +8635,7 @@ dos_expandpath(
for (p = buf + wildoff; p < s; ++p)
if (rem_backslash(p))
{
STRCPY(p, p + 1);
mch_memmove(p, p + 1, STRLEN(p));
--e;
--s;
}
@@ -8936,7 +8936,7 @@ unix_expandpath(gap, path, wildoff, flags, didstar)
for (p = buf + wildoff; p < s; ++p)
if (rem_backslash(p))
{
STRCPY(p, p + 1);
mch_memmove(p, p + 1, STRLEN(p));
--e;
--s;
}