]> git.eshelyaron.com Git - emacs.git/commitdiff
; * doc/lispref/control.texi (Conditionals): Add missing paren (bug#69742).
authorArash Esbati <arash@gnu.org>
Tue, 12 Mar 2024 11:53:32 +0000 (12:53 +0100)
committerEshel Yaron <me@eshelyaron.com>
Mon, 18 Mar 2024 15:39:34 +0000 (16:39 +0100)
(cherry picked from commit a9be5c7ea92e7868873d6d3c721d5a0be62ee3ad)

doc/lispref/control.texi

index 78ad5b68a517ab92b1b9eca486749d1b3d08dc12..f9f3389c398b850421549eeccaebc54bea32644c 100644 (file)
@@ -323,7 +323,7 @@ described below.
 
 @defmac if-let spec then-form else-forms...
 Evaluate each binding in @var{spec} in turn, like in @code{let*}
-(@pxref{Local Variables}, stopping if a binding value is @code{nil}.
+(@pxref{Local Variables}), stopping if a binding value is @code{nil}.
 If all are non-@code{nil}, return the value of @var{then-form},
 otherwise the last form in @var{else-forms}.
 @end defmac