From 5d23fc9467ebc26a93c1b5bc45bf26026b9319cb Mon Sep 17 00:00:00 2001 From: Jeremy Bryant Date: Fri, 22 Aug 2025 21:57:30 +0100 Subject: [PATCH] * doc/lispref/control.texi (cond* Macro): Update bind* entry Update manual to match docstring of (bind*) clause, including the qualifier `all subsequent clauses'. (Bug#79246) --- doc/lispref/control.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi index 4d00d27bd46..8df8cd215f5 100644 --- a/doc/lispref/control.texi +++ b/doc/lispref/control.texi @@ -1489,8 +1489,8 @@ Each clause normally has the form @w{@code{(@var{condition} @findex bind* @code{(bind* @var{bindings}@dots{})} means to bind @var{bindings} (like the bindings list in @code{let*}, @pxref{Local Variables}) for the body -of the clause. As a condition, it counts as true if the first binding's -value is non-@code{nil}. +of the clause, and all subsequent clauses. As a condition, it counts as +true if the first binding's value is non-@code{nil}. @findex match* @findex pcase*