commit 713c86f823a27462efd4f3269aaa7fb091de086a
parent 931eef3f57005c21ab9253573279085d3126ffd6
Author: Wolfgang Corcoran-Mathe <wcm@sigwinch.xyz>
Date: Wed, 31 Jan 2024 14:32:26 -0500
Reflow.
Diffstat:
1 file changed, 13 insertions(+), 10 deletions(-)
diff --git a/doc/r7rs-small/r7rs-small.texinfo b/doc/r7rs-small/r7rs-small.texinfo
@@ -1456,16 +1456,19 @@ unspecified.
@deffn syntax include @svar{string@sub{1}} @svar{string@sub{2}}@dots{}
@deffnx syntax include-ci @svar{string@sub{1}} @svar{string@sub{2}}@dots{}
-Semantics: Both @code{include} and @code{include-ci} take one or more filenames expressed as string
-literals, apply an implementation-specific algorithm to find corresponding files, read the
-contents of the files in the specified order as if by repeated applications of read, and
-effectively replace the @code{include} or @code{include-ci} expression with a @code{begin} expression containing
-what was read from the files. The difference between the two is that @code{include-ci} reads each
-file as if it began with the @code{#!fold-case} directive, while @code{include} does not.
-
-Note: Implementations are encouraged to search for files in the directory which
-contains the including file, and to provide a way for users to specify other directories
-to search.
+Semantics: Both @code{include} and @code{include-ci} take one or more
+filenames expressed as string literals, apply an implementation-specific
+algorithm to find corresponding files, read the contents of the files in the
+specified order as if by repeated applications of read, and effectively
+replace the @code{include} or @code{include-ci} expression with a
+@code{begin} expression containing what was read from the files. The
+difference between the two is that @code{include-ci} reads each file as if
+it began with the @code{#!fold-case} directive, while @code{include} does
+not.
+
+Note: Implementations are encouraged to search for files in the directory
+which contains the including file, and to provide a way for users to specify
+other directories to search.
@end deffn
@node Derived expression types