diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-02-14 17:47:24 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-02-14 17:47:24 +0100 |
commit | bb2e15a5f4129d0ed9dedb2ac39f3205480c849e (patch) | |
tree | 3a1d0723d1d13dc562b1e09ad1a617ac00e2c4d4 /doc/ref/srfi-modules.texi | |
parent | 4cc889000192b284913b92417afd0f39f7f6f134 (diff) | |
parent | f7a1ab8b946e03f6ad5ccdecba5e8d69b3ce0a1a (diff) | |
download | guile-bb2e15a5f4129d0ed9dedb2ac39f3205480c849e.tar.gz |
Merge branch 'boehm-demers-weiser-gc' into bdw-gc-static-alloc
Conflicts:
.gitignore
libguile/procs.h
Diffstat (limited to 'doc/ref/srfi-modules.texi')
-rw-r--r-- | doc/ref/srfi-modules.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/ref/srfi-modules.texi b/doc/ref/srfi-modules.texi index b1fdde1c3..1fa50b209 100644 --- a/doc/ref/srfi-modules.texi +++ b/doc/ref/srfi-modules.texi @@ -29,7 +29,7 @@ get the relevant SRFI documents from the SRFI home page * SRFI-8:: receive. * SRFI-9:: define-record-type. * 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-14:: Character-set library. * SRFI-16:: case-lambda @@ -1514,9 +1514,9 @@ the anonymous and compact syntax of @nicode{#,()} is much better. @cindex SRFI-11 @findex let-values -@findex let-values* +@findex let*-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 binding of the values returned by multiple-valued expressions. @@ -1533,7 +1533,7 @@ available. @code{let-values} performs all bindings simultaneously, which means that 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 expressions. |