diff options
author | Martin Grabmüller <mgrabmue@cs.tu-berlin.de> | 2001-04-09 16:16:09 +0000 |
---|---|---|
committer | Martin Grabmüller <mgrabmue@cs.tu-berlin.de> | 2001-04-09 16:16:09 +0000 |
commit | 5c4b24e10f8154a21b698313fcbfe6666195ac34 (patch) | |
tree | 8fc45a4c34a1af9d159859050fcb94bce7cc9915 /doc/scheme-control.texi | |
parent | 4d66be545655ae67a167ce279b3524f0fae8e02b (diff) | |
download | guile-5c4b24e10f8154a21b698313fcbfe6666195ac34.tar.gz |
2001-04-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
* scheme-data.texi (Pairs): New data type and procedure
description.
(Lists): Added new subsections for grouping the list procedures.
(Hooks): Added new nodes for hook subsections.
(String Syntax): New node, factoring out read syntax.
(Strings): Some blurb about allowed characters, zero-termination
etc.
(Keywords): Added menu descriptions.
2001-04-08 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
* scheme-indices.texi (R5RS Index): Print index `rn', not `r5'.
* guile.texi: The index formerly known as `r5' is now called `rn'.
* scheme-utility.texi, scheme-procedures.texi, scheme-io.texi,
scheme-evaluation.texi, scheme-control.texi, scheme-data.texi:
Changed all @r5index entries to @rnindex.
2001-04-06 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
* scheme-data.texi (Hooks): Added hook description and
constraints.
2001-04-04 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
* scheme-data.texi (Alphabetic Case Mapping),
(String Comparison): Rearranged function order.
(Vectors): Reorganized, new introductory text, docs about read
syntax.
Diffstat (limited to 'doc/scheme-control.texi')
-rw-r--r-- | doc/scheme-control.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/scheme-control.texi b/doc/scheme-control.texi index c7517175e..31a20681f 100644 --- a/doc/scheme-control.texi +++ b/doc/scheme-control.texi @@ -34,7 +34,7 @@ @node Continuations @section Continuations -@r5index call-with-current-continuation +@rnindex call-with-current-continuation @c FIXME::martin: Document me! @deffn primitive call-with-current-continuation @end deffn @@ -42,7 +42,7 @@ @node Multiple Values @section Returning and Accepting Multiple Values -@r5index values +@rnindex values @deffn primitive values . args Delivers all of its arguments to its continuation. Except for continuations created by the @code{call-with-values} procedure, @@ -51,7 +51,7 @@ passing no value or more than one value to continuations that were not created by @code{call-with-values} is unspecified. @end deffn -@r5index call-with-values +@rnindex call-with-values @deffn primitive call-with-values producer consumer Calls its @var{producer} argument with no values and a continuation that, when passed some values, calls the @@ -176,7 +176,7 @@ if an exception occurs then @code{#f} is returned instead. [FIXME: this is pasted in from Tom Lord's original guile.texi and should be reviewed] -@r5index dynamic-wind +@rnindex dynamic-wind @c docstring begin (texi-doc-string "guile" "dynamic-wind") @deffn primitive dynamic-wind in_guard thunk out_guard All three arguments must be 0-argument procedures. |