Function: rst-all-stn

rst-all-stn is a byte-compiled function defined in rst.el.gz.

Signature

(rst-all-stn)

Documentation

Return the hierarchical tree of sections as a top level rst-Stn.

Return value satisfies rst-Stn-is-top or is nil for no sections.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/rst.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Table of contents

(defun rst-all-stn ()
  ;; testcover: ok.
  "Return the hierarchical tree of sections as a top level `rst-Stn'.
Return value satisfies `rst-Stn-is-top' or is nil for no
sections."
  (cdr (rst-remaining-stn (rst-all-ttls-with-level) -1)))