diff options
Diffstat (limited to 'src/nvim/lua/executor.c')
-rw-r--r-- | src/nvim/lua/executor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/lua/executor.c b/src/nvim/lua/executor.c index 6f9e381d8d..89a170f7a2 100644 --- a/src/nvim/lua/executor.c +++ b/src/nvim/lua/executor.c @@ -382,7 +382,7 @@ static int nlua_eval_lua_string(lua_State *const lstate) /// and locations where result and error are saved, respectively. Always /// returns nothing (from the lua point of view). static int nlua_exec_lua_string_api(lua_State *const lstate) - FUNC_ATTR_NONNULL_ALL + FUNC_ATTR_NONNULL_ALL { const String *str = (const String *)lua_touserdata(lstate, 1); const Array *args = (const Array *)lua_touserdata(lstate, 2); |