This file is indexed.

/usr/share/doc/r5rs-doc/r5rs/Lexical-conventions.html is in r5rs-doc 20010328-7.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<html lang="en">
<head>
<title>Lexical conventions - Revised(5) Scheme</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Revised(5) Scheme">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="prev" href="Overview-of-Scheme.html#Overview-of-Scheme" title="Overview of Scheme">
<link rel="next" href="Basic-concepts.html#Basic-concepts" title="Basic concepts">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
  pre.display { font-family:inherit }
  pre.format  { font-family:inherit }
  pre.smalldisplay { font-family:inherit; font-size:smaller }
  pre.smallformat  { font-family:inherit; font-size:smaller }
  pre.smallexample { font-size:smaller }
  pre.smalllisp    { font-size:smaller }
  span.sc    { font-variant:small-caps }
  span.roman { font-family:serif; font-weight:normal; } 
  span.sansserif { font-family:sans-serif; font-weight:normal; } 
--></style>
</head>
<body>
<div class="node">
<a name="Lexical-conventions"></a>
<p>
Next:&nbsp;<a rel="next" accesskey="n" href="Basic-concepts.html#Basic-concepts">Basic concepts</a>,
Previous:&nbsp;<a rel="previous" accesskey="p" href="Overview-of-Scheme.html#Overview-of-Scheme">Overview of Scheme</a>,
Up:&nbsp;<a rel="up" accesskey="u" href="index.html#Top">Top</a>
<hr>
</div>

<h2 class="chapter">2 Lexical conventions</h2>

<ul class="menu">
<li><a accesskey="1" href="Identifiers.html#Identifiers">Identifiers</a>
<li><a accesskey="2" href="Whitespace-and-comments.html#Whitespace-and-comments">Whitespace and comments</a>
<li><a accesskey="3" href="Other-notations.html#Other-notations">Other notations</a>
</ul>

<p><a name="index-g_t_0040w_007blexical-conventions_007d-28"></a>
This section gives an informal account of some of the lexical
conventions used in writing Scheme programs.  For a formal syntax of
Scheme, see section <a href="Formal-syntax.html#Formal-syntax">Formal syntax</a>.

<p>Upper and lower case forms of a letter are never distinguished
except within character and string constants.  For example, &lsquo;<samp><span class="samp">Foo</span></samp>&rsquo; is
the same identifier as &lsquo;<samp><span class="samp">FOO</span></samp>&rsquo;, and <tt>#x1AB</tt> is the same number as
<tt>#X1ab</tt>.

</body></html>