| Allegro CL version 7.0 Moderately revised from 6.2. | |||||||||
Arguments: condition &rest forms
Evaluates forms repeatedly until condition (which should be a Lisp form) evaluates to a true value.
The definition of while is
(defmacro until (condition &rest forms) `(loop (when ,condition (return)) ,@forms))
Note that loop
surrounds its body with a block named nil (as used by the return form which is the consequent of
the when form).
This macro returns nil.
Copyright (c) 1998-2006, Franz Inc. Oakland, CA., USA. All rights reserved.
This page has had moderate revisions compared to the 6.2 page.
Created 2005.9.20.
| Allegro CL version 7.0 Moderately revised from 6.2. | |||||||||