r7rs-small-texinfo

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 72d305f0ecf5eae68b246c27fc3bf7de22e9e065
parent 4143bf030d6582f7f6ca56a9eb7fae0f440da915
Author: Wolfgang Corcoran-Mathe <wcm@sigwinch.xyz>
Date:   Tue, 30 Jan 2024 15:14:50 -0500

Use @samp for literal tokens.

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

diff --git a/doc/r7rs-small/r7rs-small.texinfo b/doc/r7rs-small/r7rs-small.texinfo @@ -725,61 +725,61 @@ For a description of the notations used for numbers, see section 6.2. @table @t -@item @t{. + -} +@item @samp{. + -} These are used in numbers, and can also occur anywhere in an identifier. A delimited plus or minus sign by itself is also an identifier. A delimited period (not occurring within a number or identifier) is used in the notation for pairs (section 6.4), and to indicate a rest-parameter in a formal parameter list (section 4.1.4). Note that a sequence of two or more periods is an identifier. -@item @t{( )} +@item @samp{( )} Parentheses are used for grouping and to notate lists (section 6.4). -@item @t{'} +@item @samp{'} The apostrophe (single quote) character is used to indicate literal data (section 4.1.2). -@item @t{`} +@item @samp{`} The grave accent (backquote) character is used to indicate partly constant data (section 4.2.8). -@item @t{, ,@@} +@item @samp{, ,@@} The character comma and the sequence comma at-sign are used in conjunction with quasiquotation (section 4.2.8). -@item @t{"} +@item @samp{"} The quotation mark character is used to delimit strings (section 6.7). -@item @t{\} +@item @samp{\} Backslash is used in the syntax for character constants (section 6.6) and as an escape character within string constants (section 6.7) and identifiers (section 7.1.1). -@item @t{[ ] @{ @} |} +@item @samp{[ ] @{ @} |} Left and right square and curly brackets (braces) are reserved for possible future extensions to the language. -@item @t{#} +@item @samp{#} The number sign is used for a variety of purposes depending on the character that immediately follows it: -@item @t{#t #f} +@item @samp{#t #f} These are the boolean constants (section 6.3), along with the alternatives #true and #false. -@item @t{#\} +@item @samp{#\} This introduces a character constant (section 6.6). -@item @t{#(} +@item @samp{#(} This introduces a vector constant (section 6.8). Vector constants are terminated by ) . -@item @t{#u8(} +@item @samp{#u8(} This introduces a bytevector constant (section 6.9). Bytevector constants are terminated by @code{)} . -@item @t{#e #i #b #o #d #x} +@item @samp{#e #i #b #o #d #x} These are used in the notation for numbers (section 6.2.5). -@item @t{#<n>= #<n>#} +@item @samp{#<n>= #<n>#} These are used for labeling and referencing other literal data (section 2.4). @end table