Replace vim_isspace() with ascii_isspace() defined in ascii.h

This commit is contained in:
Felipe Oliveira Carvalho
2015-04-22 19:50:52 -03:00
parent 2ca8afc74e
commit bcfc37ea98
12 changed files with 26 additions and 28 deletions

View File

@@ -1371,7 +1371,7 @@ static char_u *do_one_arg(char_u *str)
*p++ = *str;
} else {
/* An item ends at a space not in backticks */
if (!inbacktick && vim_isspace(*str))
if (!inbacktick && ascii_isspace(*str))
break;
if (*str == '`')
inbacktick ^= TRUE;