Function: sgml-tag-name--cmacro
sgml-tag-name--cmacro is a function defined in sgml-mode.el.gz.
Signature
(sgml-tag-name--cmacro _CL-WHOLE-ARG CL-X)
Documentation
compiler-macro for inlining sgml-tag-name.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/sgml-mode.el.gz
;; Closure converted to defun by helpful.
(defun sgml-tag-name--cmacro
(_cl-whole-arg cl-x)
"compiler-macro for inlining `sgml-tag-name'."
(cl-block sgml-tag-name--cmacro
(cl--defsubst-expand
'(cl-x)
'(cl-block sgml-tag-name
(progn
(or
(sgml-tag-p cl-x)
(signal 'wrong-type-argument
(list 'sgml-tag cl-x)))
(aref cl-x 4)))
nil nil nil cl-x)))