diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2021-10-19 06:51:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-19 06:51:42 -0700 |
commit | aac15cf4ade5cb67000abe171ff8e2060b78907e (patch) | |
tree | cc91a6759c739044a5a338bc938cfa033d7273ac /src/nvim/lua/treesitter.c | |
parent | 29b718d04c474433977e952ac7f3561041f3bda0 (diff) | |
parent | 6059784770c4c88fb6fe528b9f7634192fa1164e (diff) | |
download | rneovim-aac15cf4ade5cb67000abe171ff8e2060b78907e.tar.gz rneovim-aac15cf4ade5cb67000abe171ff8e2060b78907e.tar.bz2 rneovim-aac15cf4ade5cb67000abe171ff8e2060b78907e.zip |
Merge #16000 refactor: uncrustify
Diffstat (limited to 'src/nvim/lua/treesitter.c')
-rw-r--r-- | src/nvim/lua/treesitter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/lua/treesitter.c b/src/nvim/lua/treesitter.c index bd978cc8ab..02bd612149 100644 --- a/src/nvim/lua/treesitter.c +++ b/src/nvim/lua/treesitter.c @@ -934,7 +934,7 @@ push: ts_tree_cursor_current_node(ud), lua_upvalueindex(2)); // [node] - const char * field = ts_tree_cursor_current_field_name(ud); + const char *field = ts_tree_cursor_current_field_name(ud); if (field != NULL) { lua_pushstring(L, ts_tree_cursor_current_field_name(ud)); |