mirror of
https://github.com/neovim/neovim.git
synced 2025-10-12 12:56:04 +00:00
refactor: replace char_u variables and functions with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -522,7 +522,7 @@ static void regmbc(int c)
|
||||
if (regcode == JUST_CALC_SIZE) {
|
||||
regsize += utf_char2len(c);
|
||||
} else {
|
||||
regcode += utf_char2bytes(c, regcode);
|
||||
regcode += utf_char2bytes(c, (char *)regcode);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user