mirror of
https://github.com/neovim/neovim.git
synced 2025-09-15 15:58:17 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -990,7 +990,7 @@ int nlua_in_fast_event(lua_State *lstate)
|
||||
|
||||
static bool viml_func_is_fast(const char *name)
|
||||
{
|
||||
const EvalFuncDef *const fdef = find_internal_func((const char *)name);
|
||||
const EvalFuncDef *const fdef = find_internal_func(name);
|
||||
if (fdef) {
|
||||
return fdef->fast;
|
||||
}
|
||||
|
Reference in New Issue
Block a user