Basic constructor macro for simple-escape-percent structures.
(make-simple-escape-percent )
This is the usual way to construct simple-escape-percent structures. It simply conses together a structure with the specified fields.
This macro generates a new simple-escape-percent structure from scratch. See also change-simple-escape-percent, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-simple-escape-percent (&rest args) (std::make-aggregate 'simple-escape-percent args 'nil 'make-simple-escape-percent nil))
Function:
(defun simple-escape-percent nil (declare (xargs :guard t)) (cons :percent nil))