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