Author: sebor
Date: Sun Nov 23 17:04:36 2008
New Revision: 720080

URL: http://svn.apache.org/viewvc?rev=720080&view=rev
Log:
2008-11-23  Martin Sebor  <[EMAIL PROTECTED]>

        STDCXX-1025
        * doc/stdlibref/ios-base.html (ios_base::flags, ios_base::setf):
        Improved/corrected wording.
        (ios_base::unsetf, ios_base::setf): Moved up just below flags().

Modified:
    stdcxx/branches/4.2.x/doc/stdlibref/ios-base.html

Modified: stdcxx/branches/4.2.x/doc/stdlibref/ios-base.html
URL: 
http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/doc/stdlibref/ios-base.html?rev=720080&r1=720079&r2=720080&view=diff
==============================================================================
--- stdcxx/branches/4.2.x/doc/stdlibref/ios-base.html (original)
+++ stdcxx/branches/4.2.x/doc/stdlibref/ios-base.html Sun Nov 23 17:04:36 2008
@@ -390,7 +390,28 @@
 <A NAME="idx678"></A><PRE>fmtflags 
 <B>flags</B>(fmtflags fmtfl); </PRE>
 <UL>
-<P>Saves the format control information, then sets it to <SAMP>fmtfl</SAMP> 
and returns the previously saved value.</P>
+<P>Sets <SAMP>flags()</SAMP> to <SAMP>fmtfl</SAMP> and returns the previous 
value of <SAMP>flags()</SAMP>.</P>
+</UL>
+
+
+<A NAME="idx686"></A><PRE>fmtflags 
+<B>setf</B>(fmtflags fmtfl); </PRE>
+<UL>
+<P>Sets <SAMP>flags()</SAMP> to <SAMP>(fmtfl | flags())</SAMP> and returns the 
previous value of <SAMP>flags()</SAMP>.</P>
+</UL>
+
+
+<A NAME="idx687"></A><PRE>fmtflags 
+<B>setf</B>(fmtflags fmtfl, fmtflags mask); </PRE>
+<UL>
+<P>Clears <SAMP>mask</SAMP> in <SAMP>flags()</SAMP>, sets <SAMP>(fmtfl &amp; 
mask)</SAMP> in <SAMP>flags()</SAMP>, and returns the previous value of 
<SAMP>flags()</SAMP>.</P>
+</UL>
+
+
+<A NAME="idx689"></A><PRE>void 
+<B>unsetf</B>(fmtflags mask); </PRE>
+<UL>
+<P>Clears <SAMP>mask</SAMP> in <SAMP>flags()</SAMP>.</P>
 </UL>
 
 
@@ -443,20 +464,6 @@
 </UL>
 
 
-<A NAME="idx686"></A><PRE>fmtflags 
-<B>setf</B>(fmtflags fmtfl); </PRE>
-<UL>
-<P>Saves the format control information, then sets it to <SAMP>fmtfl</SAMP> 
and returns the previously saved value.</P>
-</UL>
-
-
-<A NAME="idx687"></A><PRE>fmtflags 
-<B>setf</B>(fmtflags fmtfl, fmtflags mask); </PRE>
-<UL>
-<P>Saves the format control information, then clears <SAMP>mask</SAMP> in 
<SAMP>flags()</SAMP>, sets <SAMP>fmtfl &amp; mask in flags()</SAMP>, and 
returns the previously saved value.</P>
-</UL>
-
-
 <A NAME="idx688"></A><PRE>bool 
 <B>sync_with_stdio</B>(bool sync = true); </PRE>
 <UL>
@@ -464,13 +471,6 @@
 </UL>
 
 
-<A NAME="idx689"></A><PRE>void 
-<B>unsetf</B>(fmtflags mask); </PRE>
-<UL>
-<P>Clears <SAMP>mask</SAMP> in <SAMP>flags()</SAMP>.</P>
-</UL>
-
-
 <A NAME="idx690"></A><PRE>streamsize 
 <B>width</B>() const; </PRE>
 <UL>


Reply via email to