Merge pull request #19437 from dundargoc/refactor/char_u-to-char

refactor: replace char_u with char
This commit is contained in:
bfredl
2022-07-31 15:55:01 +02:00
committed by GitHub
35 changed files with 454 additions and 496 deletions

View File

@@ -1674,7 +1674,7 @@ static void nlua_add_treesitter(lua_State *const lstate) FUNC_ATTR_NONNULL_ALL
lua_setfield(lstate, -2, "_ts_get_minimum_language_version");
}
int nlua_expand_pat(expand_T *xp, char_u *pat, int *num_results, char_u ***results)
int nlua_expand_pat(expand_T *xp, char_u *pat, int *num_results, char ***results)
{
lua_State *const lstate = global_lstate;
int ret = OK;