mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 01:08:20 +00:00
Replace vim_isspace() with ascii_isspace() defined in ascii.h
This commit is contained in:
@@ -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++;
|
||||
|
Reference in New Issue
Block a user