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