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