Function: org-list-get-list-end

org-list-get-list-end is a byte-compiled function defined in org-list.el.gz.

Signature

(org-list-get-list-end ITEM STRUCT PREVS)

Documentation

Return point at end of sub-list ITEM belongs.

STRUCT is the list structure. PREVS is the alist of previous items, as returned by org-list-prevs-alist.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-list.el.gz
(defun org-list-get-list-end (item struct prevs)
  "Return point at end of sub-list ITEM belongs.
STRUCT is the list structure.  PREVS is the alist of previous
items, as returned by `org-list-prevs-alist'."
  (org-list-get-item-end (org-list-get-last-item item struct prevs) struct))