r7rs-small-texinfo

Unnamed repository; edit this file 'description' to name the repository.
git clone https://kaka.farm/~git/r7rs-small-texinfo
Log | Files | Refs

commit 031547d3a0f414afc64ba066701e1829073e6995
parent 853ea698aeae9df789d037edc66acdaefd38660c
Author: Wolfgang Corcoran-Mathe <wcm@sigwinch.xyz>
Date:   Wed, 31 Jan 2024 13:46:58 -0500

Procedure calls: Texify.

Diffstat:
Mdoc/r7rs-small/r7rs-small.texinfo | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/doc/r7rs-small/r7rs-small.texinfo b/doc/r7rs-small/r7rs-small.texinfo @@ -1299,10 +1299,10 @@ is passed the resulting arguments. The procedures in this document are available as the values of variables exported by the standard libraries. For example, the addition and multiplication -procedures in the above examples are the values of the variables + and * in the base -library. New procedures are created by evaluating lambda expressions (see section 4.1.4). +procedures in the above examples are the values of the variables @code{+} and @code{*} in the base +library. New procedures are created by evaluating lambda expressions (@xref{Procedures}). -Procedure calls can return any number of values (see values in section 6.10). Most of the +Procedure calls can return any number of values (see values in @ref{Control features}). Most of the procedures defined in this report return one value or, for procedures such as apply, pass on the values returned by a call to one of their arguments. Exceptions are noted in the individual descriptions. @@ -1316,7 +1316,7 @@ concurrent evaluation of the operator and operand expressions is constrained to consistent with some sequential order of evaluation. The order of evaluation may be chosen differently for each procedure call. -Note: In many dialects of Lisp, the empty list, (), is a legitimate expression evaluating +Note: In many dialects of Lisp, the empty list, @code{()}, is a legitimate expression evaluating to itself. In Scheme, it is an error. @node Procedures