mirror of
https://github.com/neovim/neovim.git
synced 2025-10-13 21:36:05 +00:00
refactor: replace char_u with char 24 (#21823)
refactor: replace char_u with char Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -391,7 +391,7 @@ nlua_pop_typval_table_processing_end:
|
||||
case LUA_TFUNCTION: {
|
||||
LuaRef func = nlua_ref_global(lstate, -1);
|
||||
|
||||
char *name = (char *)register_luafunc(func);
|
||||
char *name = register_luafunc(func);
|
||||
|
||||
cur.tv->v_type = VAR_FUNC;
|
||||
cur.tv->vval.v_string = xstrdup(name);
|
||||
|
Reference in New Issue
Block a user