mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 22:48:34 +00:00
lint: clean-up after parent commit
This commit is contained in:
@@ -1767,8 +1767,9 @@ char_u *get_foldtext(win_T *wp, linenr_T lnum, linenr_T lnume,
|
||||
int len;
|
||||
|
||||
if (has_mbyte && (len = (*mb_ptr2len)(p)) > 1) {
|
||||
if (!vim_isprintc(utf_ptr2char(p)))
|
||||
if (!vim_isprintc(utf_ptr2char(p))) {
|
||||
break;
|
||||
}
|
||||
p += len - 1;
|
||||
} else if (*p == TAB)
|
||||
*p = ' ';
|
||||
|
Reference in New Issue
Block a user