mirror of
https://github.com/neovim/neovim.git
synced 2025-09-12 14:28:18 +00:00
Remove all occurences of the mb_ptr2char macro
First step towards implemening issue #7401. The same can be done for all deprecated mb_ functions in follow-up patches.
This commit is contained in:
@@ -3223,7 +3223,7 @@ int build_stl_str_hl(
|
||||
if (wp->w_cursor.col > (colnr_T)STRLEN(line_ptr))
|
||||
byteval = 0;
|
||||
else
|
||||
byteval = (*mb_ptr2char)(line_ptr + wp->w_cursor.col);
|
||||
byteval = utf_ptr2char(line_ptr + wp->w_cursor.col);
|
||||
|
||||
int groupdepth = 0;
|
||||
|
||||
|
Reference in New Issue
Block a user