forked from aniani/vim
updated for version 7.1-226
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
@@ -666,6 +666,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
226,
|
||||
/**/
|
||||
225,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user