0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

updated for version 7.1-084

This commit is contained in:
Bram Moolenaar
2007-08-21 13:07:12 +00:00
parent fa2e044471
commit dd87969c8b
5 changed files with 27 additions and 4 deletions

View File

@@ -3311,9 +3311,10 @@ set_one_cmd_context(xp, buff)
in_quote = !in_quote;
}
#ifdef SPACE_IN_FILENAME
else if (!vim_isfilec(c) && (!(ea.argt & NOSPC) || usefilter))
else if (!vim_isfilec_or_wc(c)
&& (!(ea.argt & NOSPC) || usefilter))
#else
else if (!vim_isfilec(c))
else if (!vim_isfilec_or_wc(c))
#endif
{
while (*p != NUL)
@@ -3324,7 +3325,7 @@ set_one_cmd_context(xp, buff)
else
#endif
c = *p;
if (c == '`' || vim_isfilec(c))
if (c == '`' || vim_isfilec_or_wc(c))
break;
#ifdef FEAT_MBYTE
if (has_mbyte)