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