diff options
author | Andy Wingo <wingo@pobox.com> | 2012-01-20 19:47:02 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2012-01-20 19:51:45 +0100 |
commit | 9accf3d98ffd1d9d484e5214a9dd9e4054204557 (patch) | |
tree | 8aa53e7eabc6bc4ca6a3a8adafac94d9b0a2da09 /doc/ref/r6rs.texi | |
parent | 7d02e256610e37c0ab0e8c55623d6f6c6eacab82 (diff) | |
download | guile-9accf3d98ffd1d9d484e5214a9dd9e4054204557.tar.gz |
add when, unless
* module/ice-9/boot-9.scm (when, unless): New forms.
* doc/ref/api-control.texi (Conditionals): Add docs. Rename this
node from "if cond case".
* doc/ref/r6rs.texi:
* doc/ref/scheme-ideas.texi:
* doc/ref/srfi-modules.texi: Update referrers.
Diffstat (limited to 'doc/ref/r6rs.texi')
-rw-r--r-- | doc/ref/r6rs.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ref/r6rs.texi b/doc/ref/r6rs.texi index d054bd39e..df14cc050 100644 --- a/doc/ref/r6rs.texi +++ b/doc/ref/r6rs.texi @@ -1,6 +1,6 @@ @c -*-texinfo-*- @c This is part of the GNU Guile Reference Manual. -@c Copyright (C) 2010, 2011 +@c Copyright (C) 2010, 2011, 2012 @c Free Software Foundation, Inc. @c See the file guile.texi for copying conditions. @@ -316,7 +316,7 @@ grouped below by the existing manual sections to which they correspond. @deffn {Scheme Syntax} if test consequence [alternate] @deffnx {Scheme Syntax} cond clause1 clause2 ... @deffnx {Scheme Syntax} case key clause1 clause2 ... -@xref{if cond case}, for documentation. +@xref{Conditionals}, for documentation. @end deffn @deffn {Scheme Syntax} and expr ... @@ -1146,7 +1146,7 @@ exception handler that binds a raised exception to @var{variable} and then evaluates the specified @var{clause}s as if they were part of a @code{cond} expression, with the value of the first matching clause becoming the value of the @code{guard} expression -(@pxref{if cond case}). If none of the clause's test expressions +(@pxref{Conditionals}). If none of the clause's test expressions evaluates to @code{#t}, the exception is re-raised, with the exception handler that was current before the evaluation of the @code{guard} form. |