Function: org-sublist

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

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 /usr/src/emacs/lisp/org/org-compat.el.gz
(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))