Merge pull request #19628 from dundargoc/refactor/char_u/2

refactor: replace char_u with char
This commit is contained in:
bfredl
2022-08-25 22:35:20 +02:00
committed by GitHub
48 changed files with 504 additions and 523 deletions

View File

@@ -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;
}