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

updated for version 7.0024

This commit is contained in:
Bram Moolenaar
2004-12-24 14:35:23 +00:00
parent 1cd871b534
commit b5bf5b8fae
43 changed files with 887 additions and 311 deletions

View File

@@ -3113,13 +3113,13 @@ build_drop_cmd(filec, filev, sendReply)
for (i = 0; i < filec; i++)
{
/* On Unix the shell has already expanded the wildcards, don't want to
* do it again in the Vim server. On MS-Windows only need to escape a
* space. */
* do it again in the Vim server. On MS-Windows only escape
* non-wildcard characters. */
p = vim_strsave_escaped((char_u *)filev[i],
#ifdef UNIX
PATH_ESC_CHARS
#else
(char_u *)" "
(char_u *)" \t%#"
#endif
);
if (p == NULL)