mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.0040
This commit is contained in:
@@ -4939,7 +4939,12 @@ mch_expand_wildcards(num_pat, pat, num_file, file, flags)
|
||||
*p++ = '"';
|
||||
}
|
||||
else
|
||||
*p++ = pat[i][j++];
|
||||
{
|
||||
/* For a backslash also copy the next character, don't
|
||||
* want to put quotes around it. */
|
||||
if ((*p++ = pat[i][j++]) == '\\' && pat[i][j] != NUL)
|
||||
*p++ = pat[i][j++];
|
||||
}
|
||||
*p = NUL;
|
||||
#endif
|
||||
}
|
||||
|
Reference in New Issue
Block a user