mirror of
https://github.com/neovim/neovim.git
synced 2025-10-01 07:28:34 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -4951,7 +4951,7 @@ static char_u *do_insert_char_pre(int c)
|
||||
// Get the value of v:char. It may be empty or more than one
|
||||
// character. Only use it when changed, otherwise continue with the
|
||||
// original character to avoid breaking autoindent.
|
||||
if (STRCMP(buf, get_vim_var_str(VV_CHAR)) != 0) {
|
||||
if (strcmp(buf, get_vim_var_str(VV_CHAR)) != 0) {
|
||||
res = xstrdup(get_vim_var_str(VV_CHAR));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user