1
Fork 0
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:
Yuan Fu 2022-10-16 22:30:16 -07:00
parent 2349ecb321
commit 85d0c11119
No known key found for this signature in database
GPG key ID: 56E19BC57664A442

View file

@ -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;