1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 04:10:18 +02:00

Merge commit 'c010924a71' into vm-check

This commit is contained in:
Andy Wingo 2009-03-17 16:01:18 +01:00
commit a3f2bf81d9

View file

@ -29,7 +29,7 @@ get the relevant SRFI documents from the SRFI home page
* SRFI-8:: receive. * SRFI-8:: receive.
* SRFI-9:: define-record-type. * SRFI-9:: define-record-type.
* SRFI-10:: Hash-Comma Reader Extension. * SRFI-10:: Hash-Comma Reader Extension.
* SRFI-11:: let-values and let-values*. * SRFI-11:: let-values and let*-values.
* SRFI-13:: String library. * SRFI-13:: String library.
* SRFI-14:: Character-set library. * SRFI-14:: Character-set library.
* SRFI-16:: case-lambda * SRFI-16:: case-lambda
@ -1514,9 +1514,9 @@ the anonymous and compact syntax of @nicode{#,()} is much better.
@cindex SRFI-11 @cindex SRFI-11
@findex let-values @findex let-values
@findex let-values* @findex let*-values
This module implements the binding forms for multiple values This module implements the binding forms for multiple values
@code{let-values} and @code{let-values*}. These forms are similar to @code{let-values} and @code{let*-values}. These forms are similar to
@code{let} and @code{let*} (@pxref{Local Bindings}), but they support @code{let} and @code{let*} (@pxref{Local Bindings}), but they support
binding of the values returned by multiple-valued expressions. binding of the values returned by multiple-valued expressions.
@ -1533,7 +1533,7 @@ available.
@code{let-values} performs all bindings simultaneously, which means that @code{let-values} performs all bindings simultaneously, which means that
no expression in the binding clauses may refer to variables bound in the no expression in the binding clauses may refer to variables bound in the
same clause list. @code{let-values*}, on the other hand, performs the same clause list. @code{let*-values}, on the other hand, performs the
bindings sequentially, just like @code{let*} does for single-valued bindings sequentially, just like @code{let*} does for single-valued
expressions. expressions.