Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 812860e

Browse files
committed
Hack places where '--' should appear as literal output but the -- was
(properly) converted to - by LaTeX2HTML.
1 parent d960dc8 commit 812860e

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

Doc/lib/libmultifile.tex

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
\section{\module{multifile} ---
2-
Support for reading files which contain distinct parts.}
3-
\declaremodule{standard}{multifile}
4-
\sectionauthor{Eric S. Raymond}{[email protected]}
2+
Support for files containing distinct parts}
53

4+
\declaremodule{standard}{multifile}
65
\modulesynopsis{Support for reading files which contain distinct
7-
parts, such as some MIME data.}
6+
parts, such as some MIME data.}
7+
\sectionauthor{Eric S. Raymond}{[email protected]}
88

99

1010
The \class{MultiFile} object enables you to treat sections of a text
@@ -95,7 +95,7 @@ \subsection{MultiFile Objects \label{MultiFile-objects}}
9595

9696
\begin{methoddesc}{is_data}{str}
9797
Return true if \var{str} is data and false if it might be a section
98-
boundary. As written, it tests for a prefix other than \code{'--'} at
98+
boundary. As written, it tests for a prefix other than \code{'-}\code{-'} at
9999
start of line (which all MIME boundaries have) but it is declared so
100100
it can be overridden in derived classes.
101101

@@ -106,15 +106,15 @@ \subsection{MultiFile Objects \label{MultiFile-objects}}
106106

107107
\begin{methoddesc}{section_divider}{str}
108108
Turn a boundary into a section-divider line. By default, this
109-
method prepends \code{'--'} (which MIME section boundaries have) but
109+
method prepends \code{'-}\code{-'} (which MIME section boundaries have) but
110110
it is declared so it can be overridden in derived classes. This
111111
method need not append LF or CR-LF, as comparison with the result
112112
ignores trailing whitespace.
113113
\end{methoddesc}
114114

115115
\begin{methoddesc}{end_marker}{str}
116116
Turn a boundary string into an end-marker line. By default, this
117-
method prepends \code{'--'} and appends \code{'--'} (like a
117+
method prepends \code{'-}\code{-'} and appends \code{'-}\code{-'} (like a
118118
MIME-multipart end-of-message marker) but it is declared so it can be
119119
be overridden in derived classes. This method need not append LF or
120120
CR-LF, as comparison with the result ignores trailing whitespace.

0 commit comments

Comments
 (0)