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