Skip to content
Snippets Groups Projects
Commit 106bb10c authored by Philipp Marek's avatar Philipp Marek
Browse files

Change wording of WHEN-LET* docstring.

parent f10fd1b7
No related branches found
No related tags found
No related merge requests found
...@@ -71,12 +71,12 @@ or a list of bindings of the form: ...@@ -71,12 +71,12 @@ or a list of bindings of the form:
... ...
(variable-n initial-form-n)) (variable-n initial-form-n))
Each initial-form is executed in turn, and the variable bound to the Each INITIAL-FORM is executed in turn, and the variable bound to the
corresponding value. Initial-form expressions can refer to variables corresponding value. INITIAL-FORM expressions can refer to variables
previously bound by the WHEN-LET*. previously bound by the WHEN-LET*.
Execution of WHEN-LET* stops immediately if any initial-form evaluates to NIL. Execution of WHEN-LET* stops immediately if any INITIAL-FORM evaluates to NIL.
If all initial-forms evaluate to true, then FORMS are executed as an implicit If all INITIAL-FORMs evaluate to true, then FORMS are executed as an implicit
PROGN." PROGN."
(let ((binding-list (if (and (consp bindings) (symbolp (car bindings))) (let ((binding-list (if (and (consp bindings) (symbolp (car bindings)))
(list bindings) (list bindings)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment