mirror of
https://github.com/neovim/neovim.git
synced 2025-09-26 04:58:33 +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:
@@ -1536,7 +1536,7 @@ static int getexactdigraph(int char1, int char2, int meta_char)
|
||||
to = string_convert(&vc, buf, &len);
|
||||
|
||||
if (to != NULL) {
|
||||
retval = (*mb_ptr2char)(to);
|
||||
retval = utf_ptr2char(to);
|
||||
xfree(to);
|
||||
}
|
||||
(void)convert_setup(&vc, NULL, NULL);
|
||||
|
Reference in New Issue
Block a user