Function: rst-Stn-is-top

rst-Stn-is-top is a byte-compiled function defined in rst.el.gz.

Signature

(rst-Stn-is-top SELF)

Documentation

Return non-nil if SELF is a top level node.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/rst.el.gz
(defun rst-Stn-is-top (self)
  ;; testcover: ok.
  "Return non-nil if SELF is a top level node."
  (cl-check-type self rst-Stn)
  (< (rst-Stn-level self) 0))