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