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