Commit 3abbcbb1 by Phil Edwards

configopts.html: Fix thinko.

2001-07-09  Phil Edwards  <pme@sources.redhat.com>

	* docs/html/configopts.html:  Fix thinko.
	* docs/html/27_io/howto.html:  Fix thinko and HTML markup.
	* include/bits/stl_iterator.h:  Fix typo.

From-SVN: r43878
parent af076e58
2001-07-09 Phil Edwards <pme@sources.redhat.com> 2001-07-09 Phil Edwards <pme@sources.redhat.com>
* docs/html/configopts.html: Fix thinko.
* docs/html/27_io/howto.html: Fix thinko and HTML markup.
* include/bits/stl_iterator.h: Fix typo.
2001-07-09 Phil Edwards <pme@sources.redhat.com>
* docs/html/explanations.html: New file. * docs/html/explanations.html: New file.
* docs/html/configopts.html: Link to it to provide more notes * docs/html/configopts.html: Link to it to provide more notes
on cstdio. Minor markup and spacing fixes. on cstdio. Minor markup and spacing fixes.
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<META NAME="GENERATOR" CONTENT="vi and eight fingers"> <META NAME="GENERATOR" CONTENT="vi and eight fingers">
<TITLE>libstdc++-v3 HOWTO: Chapter 27</TITLE> <TITLE>libstdc++-v3 HOWTO: Chapter 27</TITLE>
<LINK REL=StyleSheet HREF="../lib3styles.css"> <LINK REL=StyleSheet HREF="../lib3styles.css">
<!-- $Id: howto.html,v 1.5 2001/05/30 21:55:03 pme Exp $ --> <!-- $Id: howto.html,v 1.6 2001/07/09 19:37:01 pme Exp $ -->
</HEAD> </HEAD>
<BODY> <BODY>
...@@ -425,7 +425,7 @@ ...@@ -425,7 +425,7 @@
involve doing very little buffering for the standard streams, leaving involve doing very little buffering for the standard streams, leaving
most of the buffering to the underlying C library. (This kind of most of the buffering to the underlying C library. (This kind of
thing is <A HREF="../explanations.html#cstdio">tricky to get right</A>.) thing is <A HREF="../explanations.html#cstdio">tricky to get right</A>.)
The upside is that correctness is insured. The downside is that The upside is that correctness is ensured. The downside is that
writing through <TT>cout</TT> can quite easily lead to awful writing through <TT>cout</TT> can quite easily lead to awful
performance when the C++ I/O library is layered on top of the C I/O performance when the C++ I/O library is layered on top of the C I/O
library (as it is for 3.0 by default). Some patches are in the library (as it is for 3.0 by default). Some patches are in the
...@@ -447,9 +447,10 @@ ...@@ -447,9 +447,10 @@
company will become fully buffered on their own. company will become fully buffered on their own.
</P> </P>
<P>Note, by the way, that the synchronization requirement only applies to <P>Note, by the way, that the synchronization requirement only applies to
the standard streams (cin, cout, cerr, clog, and thier wide-character the standard streams (<TT>cin</TT>, <TT>cout</TT>, <TT>cerr</TT>,
counterparts). File stream objects that you create yourself have no <TT>clog</TT>, and their wide-character counterparts). File stream
such requirement and are fully buffered. objects that you create yourself have no such requirement and are fully
buffered.
</P> </P>
...@@ -459,7 +460,7 @@ ...@@ -459,7 +460,7 @@
<P CLASS="fineprint"><EM> <P CLASS="fineprint"><EM>
Comments and suggestions are welcome, and may be sent to Comments and suggestions are welcome, and may be sent to
<A HREF="mailto:libstdc++@gcc.gnu.org">the mailing list</A>. <A HREF="mailto:libstdc++@gcc.gnu.org">the mailing list</A>.
<BR> $Id: howto.html,v 1.5 2001/05/30 21:55:03 pme Exp $ <BR> $Id: howto.html,v 1.6 2001/07/09 19:37:01 pme Exp $
</EM></P> </EM></P>
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<META NAME="GENERATOR" CONTENT="vi and eight fingers"> <META NAME="GENERATOR" CONTENT="vi and eight fingers">
<TITLE>libstdc++-v3 configure options</TITLE> <TITLE>libstdc++-v3 configure options</TITLE>
<LINK REL=StyleSheet HREF="lib3styles.css"> <LINK REL=StyleSheet HREF="lib3styles.css">
<!-- $Id: configopts.html,v 1.10 2001/04/20 08:59:25 bkoz Exp $ --> <!-- $Id: configopts.html,v 1.11 2001/07/09 19:37:01 pme Exp $ -->
</HEAD> </HEAD>
<BODY> <BODY>
...@@ -71,7 +71,7 @@ options</A></H1> ...@@ -71,7 +71,7 @@ options</A></H1>
</P> </P>
<DT><TT>--enable-sjlj-exceptions </TT> <DT><TT>--enable-sjlj-exceptions </TT>
<DD><P>Forces old, short-jump/long-jump exception handling model. If <DD><P>Forces old, set-jump/long-jump exception handling model. If
at all possible, the new, frame unwinding exception handling routines at all possible, the new, frame unwinding exception handling routines
should be used instead, as they significantly reduce both runtime should be used instead, as they significantly reduce both runtime
memory usage and executable size. memory usage and executable size.
...@@ -211,7 +211,7 @@ options</A></H1> ...@@ -211,7 +211,7 @@ options</A></H1>
<HR> <HR>
<P CLASS="fineprint"><EM> <P CLASS="fineprint"><EM>
$Id: configopts.html,v 1.10 2001/04/20 08:59:25 bkoz Exp $ $Id: configopts.html,v 1.11 2001/07/09 19:37:01 pme Exp $
</EM></P> </EM></P>
......
...@@ -320,7 +320,7 @@ namespace std ...@@ -320,7 +320,7 @@ namespace std
} }
// This iterator adapter is 'normal' in the sense that it does not // This iterator adapter is 'normal' in the sense that it does not
// change the semantics of any of the operators of its itererator // change the semantics of any of the operators of its iterator
// parameter. Its primary purpose is to convert an iterator that is // parameter. Its primary purpose is to convert an iterator that is
// not a class, e.g. a pointer, into an iterator that is a class. // not a class, e.g. a pointer, into an iterator that is a class.
// The _Container parameter exists solely so that different containers // The _Container parameter exists solely so that different containers
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment