aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/lua/treesitter.c
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2021-09-20 18:35:41 +0200
committerGitHub <noreply@github.com>2021-09-20 09:35:41 -0700
commitf4ca3a29ddcb0c98e8e09c45a6342af709f8cc45 (patch)
tree054d1d35a890843504412b859249f0b0b0b4b810 /src/nvim/lua/treesitter.c
parent1f8c91bf729707fdb005292aecca8dd79538f4a5 (diff)
downloadrneovim-f4ca3a29ddcb0c98e8e09c45a6342af709f8cc45.tar.gz
rneovim-f4ca3a29ddcb0c98e8e09c45a6342af709f8cc45.tar.bz2
rneovim-f4ca3a29ddcb0c98e8e09c45a6342af709f8cc45.zip
refactor: reformat with uncrustify #15736
* fix function parameter comments * remove space after star in function names
Diffstat (limited to 'src/nvim/lua/treesitter.c')
-rw-r--r--src/nvim/lua/treesitter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/lua/treesitter.c b/src/nvim/lua/treesitter.c
index e19274ced9..37929093e3 100644
--- a/src/nvim/lua/treesitter.c
+++ b/src/nvim/lua/treesitter.c
@@ -260,7 +260,7 @@ int tslua_push_parser(lua_State *L)
return 1;
}
-static TSParser ** parser_check(lua_State *L, uint16_t index)
+static TSParser **parser_check(lua_State *L, uint16_t index)
{
return luaL_checkudata(L, index, TS_META_PARSER);
}