mirror of
https://github.com/neovim/neovim.git
synced 2025-09-11 05:48:17 +00:00
lint: clean-up after parent commit
This commit is contained in:
@@ -3220,10 +3220,11 @@ int build_stl_str_hl(
|
||||
// Get the byte value now, in case we need it below. This is more
|
||||
// efficient than making a copy of the line.
|
||||
int byteval;
|
||||
if (wp->w_cursor.col > (colnr_T)STRLEN(line_ptr))
|
||||
if (wp->w_cursor.col > (colnr_T)STRLEN(line_ptr)) {
|
||||
byteval = 0;
|
||||
else
|
||||
} else {
|
||||
byteval = utf_ptr2char(line_ptr + wp->w_cursor.col);
|
||||
}
|
||||
|
||||
int groupdepth = 0;
|
||||
|
||||
|
Reference in New Issue
Block a user