Function: org-sublist

org-sublist is a byte-compiled function defined in org-compat.el.

This function is obsolete since 9.0; use cl-subseq (note the 0-based counting).

Signature

(org-sublist LIST START END)

Documentation

Return a section of LIST, from START to END.

Counting starts at 1.

Source Code

;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-compat.el
(defun org-sublist (list start end)
  "Return a section of LIST, from START to END.
Counting starts at 1."
  (cl-subseq list (1- start) end))