You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2008/11/24 02:07:34 UTC

svn commit: r720083 - /stdcxx/trunk/doc/stdlibref/ios-base.html

Author: sebor
Date: Sun Nov 23 17:07:33 2008
New Revision: 720083

URL: http://svn.apache.org/viewvc?rev=720083&view=rev
Log:
2008-11-23  Martin Sebor  <se...@apache.org>

	Merged rev 720080 from 4.2.x.

	2008-11-23  Martin Sebor  <se...@apache.org>

	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/trunk/doc/stdlibref/ios-base.html

Modified: stdcxx/trunk/doc/stdlibref/ios-base.html
URL: http://svn.apache.org/viewvc/stdcxx/trunk/doc/stdlibref/ios-base.html?rev=720083&r1=720082&r2=720083&view=diff
==============================================================================
--- stdcxx/trunk/doc/stdlibref/ios-base.html (original)
+++ stdcxx/trunk/doc/stdlibref/ios-base.html Sun Nov 23 17:07:33 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>