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