mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-12 14:30:42 -08:00
; * src/treesit.c (ts_search_dfs): Fix tab inline.
Introduced by c6dce90d7e which is a format-fix so I think it's fine
to fix this as a standalone change?
This commit is contained in:
parent
2349ecb321
commit
85d0c11119
1 changed files with 1 additions and 1 deletions
|
|
@ -2357,7 +2357,7 @@ ts_search_dfs (TSNode *root, Lisp_Object pred, Lisp_Object parser,
|
|||
else
|
||||
{
|
||||
int count =
|
||||
named ? ts_node_named_child_count( node) : ts_node_child_count (node);
|
||||
named ? ts_node_named_child_count(node) : ts_node_child_count (node);
|
||||
for (int offset = 0; offset < count; offset++)
|
||||
{
|
||||
uint32_t idx = forward ? offset : count - offset - 1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue