Function: rst-Stn-level--cmacro

rst-Stn-level--cmacro is a function defined in rst.el.gz.

Signature

(rst-Stn-level--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining rst-Stn-level.

Source Code

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