Function: kcell-view:end

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

Signature

(kcell-view:end &optional POS)

Documentation

Return end position of cell from optional POS or point.

Includes blank lines following cell contents.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kview.el
(defun kcell-view:end (&optional pos)
  "Return end position of cell from optional POS or point.
Includes blank lines following cell contents."
  (unless pos
    (setq pos (point)))
  (save-excursion
    (or (re-search-forward "[\n\r][\n\r]" nil t)
	(point-max))))