Function: sgml-make-tag--cmacro

sgml-make-tag--cmacro is a function defined in sgml-mode.el.gz.

Signature

(sgml-make-tag--cmacro _CL-WHOLE-ARG TYPE START END NAME)

Documentation

compiler-macro for inlining sgml-make-tag.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/sgml-mode.el.gz
;; Closure converted to defun by helpful.
(defun sgml-make-tag--cmacro
    (_cl-whole-arg type start end name)
  "compiler-macro for inlining `sgml-make-tag'."
  (cl-block sgml-make-tag--cmacro
    (cl--defsubst-expand
     '(type start end name)
     '(cl-block sgml-make-tag
	(record 'sgml-tag type start end name))
     nil nil nil type start end name)))