Function: rst-Ttl-get-title-beginning

rst-Ttl-get-title-beginning is a byte-compiled function defined in rst.el.gz.

Signature

(rst-Ttl-get-title-beginning SELF)

Documentation

Return position of beginning of title text of SELF.

This position should always be at the start of a line.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/rst.el.gz
;; Public methods

(defun rst-Ttl-get-title-beginning (self)
  ;; testcover: ok.
  "Return position of beginning of title text of SELF.
This position should always be at the start of a line."
  (cl-check-type self rst-Ttl)
  (nth 4 (rst-Ttl-match self)))