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:
@@ -1387,7 +1387,7 @@ void msg_prt_line(char_u *s, int list)
|
||||
/* find start of trailing whitespace */
|
||||
if (list && lcs_trail) {
|
||||
trail = s + STRLEN(s);
|
||||
while (trail > s && vim_iswhite(trail[-1]))
|
||||
while (trail > s && ascii_iswhite(trail[-1]))
|
||||
--trail;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user