aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/lua/executor.c
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2017-06-02 15:42:37 +0200
committerBjörn Linse <bjorn.linse@gmail.com>2017-06-03 08:17:22 +0200
commit3f553ac0b9b3866f1254e669eb0c1c019c789a60 (patch)
tree32cfd15ba90209b6ef34ef2f2d3630a9400105c8 /src/nvim/lua/executor.c
parentf3d8502115d71843a504722c418313e291e9c6f5 (diff)
downloadrneovim-3f553ac0b9b3866f1254e669eb0c1c019c789a60.tar.gz
rneovim-3f553ac0b9b3866f1254e669eb0c1c019c789a60.tar.bz2
rneovim-3f553ac0b9b3866f1254e669eb0c1c019c789a60.zip
lint: fix indentation of FUNC_ATTR lines
Diffstat (limited to 'src/nvim/lua/executor.c')
-rw-r--r--src/nvim/lua/executor.c2
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);