mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 22:18:33 +00:00
Replace vim_iswhite with ascii_iswhite() defined in ascii.h
This commit is contained in:
@@ -687,7 +687,7 @@ static char *cs_create_cmd(char *csoption, char *pattern)
|
||||
* they may want to use the leading white space. */
|
||||
pat = pattern;
|
||||
if (search != 4 && search != 6)
|
||||
while (vim_iswhite(*pat))
|
||||
while (ascii_iswhite(*pat))
|
||||
++pat;
|
||||
|
||||
cmd = xmalloc(strlen(pat) + 2);
|
||||
|
Reference in New Issue
Block a user