From f0ccac0ba4e386071f2c7581082edca3536360a4 Mon Sep 17 00:00:00 2001 From: chentau Date: Tue, 26 Jan 2021 16:45:36 -0800 Subject: lint --- src/nvim/lua/executor.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/nvim/lua') 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; -- cgit