aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/lua/executor.c
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2019-06-15 13:12:59 +0200
committerBjörn Linse <bjorn.linse@gmail.com>2019-09-28 14:55:43 +0200
commitc1dc1bedba4e0e3db2cd2e52d9241991567f8218 (patch)
treec8d1533cc06b416d39788de370d70895d6ee9135 /src/nvim/lua/executor.c
parenta361e09cc531caf9dfb41bf860ca2d540ac2789d (diff)
downloadrneovim-c1dc1bedba4e0e3db2cd2e52d9241991567f8218.tar.gz
rneovim-c1dc1bedba4e0e3db2cd2e52d9241991567f8218.tar.bz2
rneovim-c1dc1bedba4e0e3db2cd2e52d9241991567f8218.zip
tree-sitter: style
Diffstat (limited to 'src/nvim/lua/executor.c')
-rw-r--r--src/nvim/lua/executor.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/lua/executor.c b/src/nvim/lua/executor.c
index 8a35f11c71..c208711985 100644
--- a/src/nvim/lua/executor.c
+++ b/src/nvim/lua/executor.c
@@ -828,8 +828,7 @@ static int create_tslua_parser(lua_State *L)
return luaL_error(L, "string expected");
}
- const char *lang_name = lua_tostring(L,1);
-
+ const char *lang_name = lua_tostring(L, 1);
return tslua_push_parser(L, lang_name);
}