commit 67a199ce51595b032106e2883e36a5da77bb65e7
parent 0d662e5757ede77432510634b53002016aa61bc8
Author: Wolfgang Corcoran-Mathe <wcm@sigwinch.xyz>
Date: Mon, 5 Feb 2024 14:31:59 -0500
Rename node and use print names to insert commas in cross-refs.
Diffstat:
3 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/doc/r7rs-small/basic-concepts.texinfo b/doc/r7rs-small/basic-concepts.texinfo
@@ -3,14 +3,14 @@
@c XXX: How do I insert commas into menu items?
@menu
-* Variables - syntactic keywords - and regions::
+* Variables syntactic keywords and regions::
* Disjointness of types::
* External representations basic::
* Storage model::
* Proper tail recursion::
@end menu
-@node Variables - syntactic keywords - and regions
+@node Variables syntactic keywords and regions
@section Variables, syntactic keywords, and regions
An identifier can name either a type of syntax or a location where a value
diff --git a/doc/r7rs-small/lexical-conventions.texinfo b/doc/r7rs-small/lexical-conventions.texinfo
@@ -61,7 +61,8 @@ Identifiers have two uses within Scheme programs:
@itemize
@item
Any identifier can be used as a variable or as a syntactic keyword
-(see @ref{Variables - syntactic keywords - and regions}
+(see @ref{Variables syntactic keywords and regions,,
+Variables@comma{} syntactic keywords@comma{} and regions}
and @ref{Macros}).
@item
diff --git a/doc/r7rs-small/primitive-expressions.texinfo b/doc/r7rs-small/primitive-expressions.texinfo
@@ -17,7 +17,8 @@
syntax: @svar{variable}
An expression consisting of a variable
-(@xref{Variables - syntactic keywords - and regions}) is a variable
+(see @ref{Variables syntactic keywords and regions,,
+Variables@comma{} syntactic keywords@comma{} and regions}) is a variable
reference. The value of the variable reference is the value stored in the
location to which the variable is bound. It is an error to reference an
unboundvariable.