diff options
author | Dundar Göc <gocdundar@gmail.com> | 2021-10-12 18:21:12 +0200 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2021-10-19 15:20:33 +0200 |
commit | 6059784770c4c88fb6fe528b9f7634192fa1164e (patch) | |
tree | cc91a6759c739044a5a338bc938cfa033d7273ac /src/nvim/lua/treesitter.c | |
parent | 38dd53c525054daf83dba27d7d46e90e8b41fa50 (diff) | |
download | rneovim-6059784770c4c88fb6fe528b9f7634192fa1164e.tar.gz rneovim-6059784770c4c88fb6fe528b9f7634192fa1164e.tar.bz2 rneovim-6059784770c4c88fb6fe528b9f7634192fa1164e.zip |
refactor: remove space after star
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)); |