mirror of
https://github.com/neovim/neovim.git
synced 2025-12-15 19:05:40 +00:00
refactor: replace char_u with char 19 (#21241)
* refactor: replace char_u with char Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -1618,7 +1618,7 @@ int call_func(const char *funcname, int len, typval_T *rettv, int argcount_in, t
|
||||
funcexe->fe_basetv);
|
||||
} else {
|
||||
// Find the function name in the table, call its implementation.
|
||||
error = call_internal_func((char_u *)fname, argcount, argvars, rettv);
|
||||
error = call_internal_func(fname, argcount, argvars, rettv);
|
||||
}
|
||||
// The function call (or "FuncUndefined" autocommand sequence) might
|
||||
// have been aborted by an error, an interrupt, or an explicitly thrown
|
||||
|
||||
Reference in New Issue
Block a user