From: Yuan Fu Date: Mon, 17 Oct 2022 05:30:16 +0000 (-0700) Subject: ; * src/treesit.c (ts_search_dfs): Fix tab inline. X-Git-Tag: emacs-29.0.90~1824 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=85d0c11119fbd14d508d228f5edf4cf53fb4e4cb;p=emacs.git ; * src/treesit.c (ts_search_dfs): Fix tab inline. Introduced by c6dce90d7e5 which is a format-fix so I think it's fine to fix this as a standalone change? --- diff --git a/src/treesit.c b/src/treesit.c index df974f7bf2a..7b80ea71d76 100644 --- a/src/treesit.c +++ b/src/treesit.c @@ -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;