Basic constructor macro for s-char-escape structures.
(make-s-char-escape [:escape <escape>])
This is the usual way to construct s-char-escape structures. It simply conses together a structure with the specified fields.
This macro generates a new s-char-escape structure from scratch. See also change-s-char-escape, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-s-char-escape (&rest args) (std::make-aggregate 's-char-escape args '((:escape)) 'make-s-char-escape nil))
Function:
(defun s-char-escape (escape) (declare (xargs :guard (escapep escape))) (declare (xargs :guard t)) (b* ((escape (mbe :logic (escape-fix escape) :exec escape))) (cons :escape escape)))