mirror of
https://github.com/neovim/neovim.git
synced 2025-09-16 08:18:17 +00:00
Replace vim_iswhite with ascii_iswhite() defined in ascii.h
This commit is contained in:
@@ -1808,7 +1808,7 @@ static void qf_fmt_text(char_u *text, char_u *buf, int bufsize)
|
||||
if (*p == '\n') {
|
||||
buf[i] = ' ';
|
||||
while (*++p != NUL)
|
||||
if (!vim_iswhite(*p) && *p != '\n')
|
||||
if (!ascii_iswhite(*p) && *p != '\n')
|
||||
break;
|
||||
} else
|
||||
buf[i] = *p++;
|
||||
|
Reference in New Issue
Block a user