diff options
author | chentau <tchen1998@gmail.com> | 2021-01-26 16:45:36 -0800 |
---|---|---|
committer | chentau <tchen1998@gmail.com> | 2021-01-26 17:09:35 -0800 |
commit | f0ccac0ba4e386071f2c7581082edca3536360a4 (patch) | |
tree | a307c04acfc9ad8579868bf7579b95bb2322cd0d /src/nvim/lua/executor.c | |
parent | d82688973dfce2fe0d25acb9c9a0c34dc255c893 (diff) | |
download | rneovim-f0ccac0ba4e386071f2c7581082edca3536360a4.tar.gz rneovim-f0ccac0ba4e386071f2c7581082edca3536360a4.tar.bz2 rneovim-f0ccac0ba4e386071f2c7581082edca3536360a4.zip |
lint
Diffstat (limited to 'src/nvim/lua/executor.c')
-rw-r--r-- | src/nvim/lua/executor.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/nvim/lua/executor.c b/src/nvim/lua/executor.c index cefb0ee429..310b194c8c 100644 --- a/src/nvim/lua/executor.c +++ b/src/nvim/lua/executor.c @@ -1292,7 +1292,10 @@ static void nlua_add_treesitter(lua_State *const lstate) FUNC_ATTR_NONNULL_ALL lua_setfield(lstate, -2, "_ts_parse_query"); } -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_u ***results) { lua_State *const lstate = nlua_enter(); int ret = OK; |