Function: rst-Stn--validate-ttl

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

Signature

(rst-Stn--validate-ttl TTL)

Documentation

Return valid TTL or signal error.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/rst.el.gz
;; FIXME refactoring: Should have an attribute `buffer' for the buffer this
;;                    title is found in. Or use `rst-Ttl-buffer'.

;; Private class methods

(defun rst-Stn--validate-ttl (ttl)
  ;; testcover: ok.
  "Return valid TTL or signal error."
  (cl-check-type ttl (or null rst-Ttl))
  ttl)