; Further fixes to core documentation for cond*.

This commit is contained in:
Sean Whitton 2026-02-08 15:11:08 +00:00
parent 51b883719b
commit 2437a45144
2 changed files with 7 additions and 6 deletions

View file

@ -1550,7 +1550,7 @@ becomes the return value of the @code{cond*} construct.
@subheading Non-exit clauses
If a clause has only one element, or if its first element is @code{t}, a
@code{bind*} or a @code{bind-and*} clause, or if it ends with the
@code{bind*} form or a @code{bind-and*} form, or if it ends with the
keyword @code{:non-exit}, then this clause never exits the @code{cond*}
construct. Instead, control falls through to the next clause (if any).
Except for @code{bind-and*}, the bindings made in @var{condition} for

View file

@ -85,11 +85,12 @@ in its body becomes the return value of the `cond*' construct.
Non-exit clauses:
If a clause has only one element, or if its first element is t, a
`bind*' clause or a `bind-and*' clause, then this clause never exits the
`cond*' construct. Instead, control always falls through to the next
clause (if any). Except for `bind-and*', all bindings made in CONDITION
for the BODY of the non-exit clause are passed along to the rest of the
clauses in this `cond*' construct.
`bind*' form or a `bind-and*' form, or if it ends with the keyword
`:non-exit', then this clause never exits the `cond*' construct.
Instead, control always falls through to the next clause (if any).
Except for `bind-and*', all bindings made in CONDITION for the BODY of
the non-exit clause are passed along to the rest of the clauses in this
`cond*' construct.
See `match*' for documentation of the patterns for use in `match*'
conditions."