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