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