Function: sgml-tag-p--cmacro
sgml-tag-p--cmacro is a function defined in sgml-mode.el.gz.
Signature
(sgml-tag-p--cmacro _CL-WHOLE-ARG CL-X)
Documentation
compiler-macro for inlining sgml-tag-p.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/sgml-mode.el.gz
;; Closure converted to defun by helpful.
(defun sgml-tag-p--cmacro
(_cl-whole-arg cl-x)
"compiler-macro for inlining `sgml-tag-p'."
(cl-block sgml-tag-p--cmacro
(cl--defsubst-expand
'(cl-x)
'(cl-block sgml-tag-p
(and
(memq
(type-of cl-x)
cl-struct-sgml-tag-tags)
t))
nil nil nil cl-x)))