Function: kcell-view:child-p

kcell-view:child-p is a byte-compiled function defined in kview.el.

Signature

(kcell-view:child-p &optional POS VISIBLE-P LBL-SEP-LEN)

Documentation

Return t if cell at optional POS or point has a child.

With optional VISIBLE-P, consider only visible children. Optional LBL-SEP-LEN is the length of the separation between a cell's label and the start of its contents.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kview.el
(defun kcell-view:child-p (&optional pos visible-p lbl-sep-len)
  "Return t if cell at optional POS or point has a child.
With optional VISIBLE-P, consider only visible children.
Optional LBL-SEP-LEN is the length of the separation between
a cell's label and the start of its contents."
  (save-excursion
    (when pos
      (goto-char pos))
    (kcell-view:child visible-p lbl-sep-len)))