Function: rst-Stn-get-title-beginning

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

Signature

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

Documentation

Return the beginning of the title of SELF.

Handles missing node properly.

Source Code

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

(defun rst-Stn-get-title-beginning (self)
  ;; testcover: ok.
  "Return the beginning of the title of SELF.
Handles missing node properly."
  (cl-check-type self rst-Stn)
  (let ((ttl (rst-Stn-ttl self)))
    (if ttl
	(rst-Ttl-get-title-beginning ttl)
      (rst-Stn-get-title-beginning (car (rst-Stn-children self))))))