summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/lispref/parsing.texi4
-rw-r--r--lisp/treesit.el3
-rw-r--r--src/treesit.c7
3 files changed, 7 insertions, 7 deletions
diff --git a/doc/lispref/parsing.texi b/doc/lispref/parsing.texi
index 34eb2826a21..353585f79c7 100644
--- a/doc/lispref/parsing.texi
+++ b/doc/lispref/parsing.texi
@@ -1015,8 +1015,8 @@ This function returns the field name of the @var{n}'th child of
@var{node}. It returns @code{nil} if there is no @var{n}'th child, or
the @var{n}'th child doesn't have a field name.
-Note that @var{n} counts named nodes only, and @var{n} can be
-negative, e.g., @minus{}1 represents the last child.
+Note that @var{n} counts both named and anonymous children, and
+@var{n} can be negative, e.g., @minus{}1 represents the last child.
@end defun
@defun treesit-node-child-count node &optional named
diff --git a/lisp/treesit.el b/lisp/treesit.el
index eed53bc2b99..264b95dc3a3 100644
--- a/lisp/treesit.el
+++ b/lisp/treesit.el
@@ -360,7 +360,6 @@ If NAMED is non-nil, collect named child only."
"Return the index of NODE in its parent.
If NAMED is non-nil, count named child only."
(let ((count 0))
- ;; TODO: Use next-sibling as it's more efficient.
(while (setq node (treesit-node-prev-sibling node named))
(cl-incf count))
count))
@@ -368,7 +367,7 @@ If NAMED is non-nil, count named child only."
(defun treesit-node-field-name (node)
"Return the field name of NODE as a child of its parent."
(when-let ((parent (treesit-node-parent node))
- (idx (treesit-node-index node t)))
+ (idx (treesit-node-index node)))
(treesit-node-field-name-for-child parent idx)))
;;; Query API supplement
diff --git a/src/treesit.c b/src/treesit.c
index 879405e551a..d9b981c1eae 100644
--- a/src/treesit.c
+++ b/src/treesit.c
@@ -2019,8 +2019,9 @@ DEFUN ("treesit-node-field-name-for-child",
Return nil if there's no Nth child, or if it has no field.
If NODE is nil, return nil.
-Note that N counts named nodes only. Also, N could be negative, e.g.,
--1 represents the last child. */)
+N counts all children, i.e., named ones and anonymous ones.
+
+N could be negative, e.g., -1 represents the last child. */)
(Lisp_Object node, Lisp_Object n)
{
if (NILP (node))
@@ -2034,7 +2035,7 @@ Note that N counts named nodes only. Also, N could be negative, e.g.,
/* Process negative index. */
if (idx < 0)
- idx = ts_node_named_child_count (treesit_node) + idx;
+ idx = ts_node_child_count (treesit_node) + idx;
if (idx < 0)
return Qnil;
if (idx > UINT32_MAX)