Function: rst-Ado-is-over-and-under

rst-Ado-is-over-and-under is a byte-compiled function defined in rst.el.gz.

Signature

(rst-Ado-is-over-and-under SELF)

Documentation

Return non-nil if SELF is an over-and-under section adornment.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/rst.el.gz
(defun rst-Ado-is-over-and-under (self)
  ;; testcover: ok.
  "Return non-nil if SELF is an over-and-under section adornment."
  (cl-check-type self rst-Ado)
  (eq (rst-Ado--style self) 'over-and-under))