Function: rst-Ttl-hdr--cmacro

rst-Ttl-hdr--cmacro is a function defined in rst.el.gz.

Signature

(rst-Ttl-hdr--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining rst-Ttl-hdr.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/rst.el.gz
;; Closure converted to defun by helpful.
(defun rst-Ttl-hdr--cmacro
    (_cl-whole-arg cl-x)
  "compiler-macro for inlining `rst-Ttl-hdr'."
  (cl-block rst-Ttl-hdr--cmacro
    (cl--defsubst-expand
     '(cl-x)
     '(cl-block rst-Ttl-hdr
	(progn
	  (or
	   (rst-Ttl-p cl-x)
	   (signal 'wrong-type-argument
		   (list 'rst-Ttl cl-x)))
	  (aref cl-x 5)))
     nil nil nil cl-x)))