mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 07:16:09 +00:00
refactor: replace char_u with char (#21901)
refactor: replace char_u with char Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -1993,7 +1993,7 @@ char *nlua_register_table_as_callable(const typval_T *const arg)
|
||||
void nlua_execute_on_key(int c)
|
||||
{
|
||||
char buf[NUMBUFLEN];
|
||||
size_t buf_len = special_to_buf(c, mod_mask, false, (char_u *)buf);
|
||||
size_t buf_len = special_to_buf(c, mod_mask, false, buf);
|
||||
|
||||
lua_State *const lstate = global_lstate;
|
||||
|
||||
|
Reference in New Issue
Block a user