1
0
forked from aniani/vim

updated for version 7.1-226

This commit is contained in:
Bram Moolenaar
2008-01-13 16:12:10 +00:00
parent a6c2c91d32
commit 332fa0c55a
2 changed files with 7 additions and 4 deletions

View File

@@ -3338,12 +3338,13 @@ set_one_cmd_context(xp, buff)
}
in_quote = !in_quote;
}
/* An argument can contain just about everything, except
* characters that end the command and white space. */
else if (c == '|' || c == '\n' || c == '"' || (vim_iswhite(c)
#ifdef SPACE_IN_FILENAME
else if (!vim_isfilec_or_wc(c)
&& (!(ea.argt & NOSPC) || usefilter))
#else
else if (!vim_isfilec_or_wc(c))
&& (!(ea.argt & NOSPC) || usefilter)
#endif
))
{
while (*p != NUL)
{