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