mirror of
https://github.com/neovim/neovim.git
synced 2025-11-29 21:50:38 +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:
@@ -1934,7 +1934,7 @@ void f_digraph_get(typval_T *argvars, typval_T *rettv, FunPtr fptr)
|
||||
|
||||
char_u buf[NUMBUFLEN];
|
||||
buf[utf_char2bytes(code, buf)] = NUL;
|
||||
rettv->vval.v_string = vim_strsave(buf);
|
||||
rettv->vval.v_string = (char *)vim_strsave(buf);
|
||||
}
|
||||
|
||||
/// "digraph_getlist()" function
|
||||
|
||||
Reference in New Issue
Block a user