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