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

@@ -1430,7 +1430,7 @@ void copy_viminfo_marks(vir_T *virp, FILE *fp_out, int count, int eof, int flags
str = skipwhite(line + 1);
str = viminfo_readstring(virp, (int)(str - virp->vir_line), FALSE);
p = str + STRLEN(str);
while (p != str && (*p == NUL || vim_isspace(*p)))
while (p != str && (*p == NUL || ascii_isspace(*p)))
p--;
if (*p)
p++;