Function: kcell-view:next-invisible-p

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

Signature

(kcell-view:next-invisible-p &optional POS LBL-SEP-LEN)

Documentation

Return t if next cell after optional POS or point exists and is invisible.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kview.el
(defun kcell-view:next-invisible-p (&optional _pos lbl-sep-len)
  "Return t if next cell after optional POS or point exists and is invisible."
  (save-excursion (and (kcell-view:next nil lbl-sep-len)
		       (kcell-view:invisible-p (point) lbl-sep-len))))