OSDN Git Service

2003-10-10 Paolo Carlini <pcarlini@unitus.it>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / ChangeLog
index 2b2b005..865d9be 100644 (file)
@@ -1,3 +1,937 @@
+2003-10-10  Paolo Carlini  <pcarlini@unitus.it>
+
+       * include/bits/ostream.tcc (operator<<(basic_ostream&, _CharT))
+       Avoid unnecessarily calling __builtin_alloca and dealing
+       explicitly with width() smaller than zero.
+       (operator<<(basic_ostream&, char), operator<<(basic_ostream&,
+       const _CharT*), operator<<(basic_ostream<_CharT, _Traits>&,
+       const char*), operator<<(basic_ostream<char, _Traits>&,
+       const char*), operator<<(basic_ostream, const basic_string&)):
+       Likewise.
+
+2003-10-09  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * config/linker-map.gnu: Make more *_type_info bits visible.
+       Move new/delete bits back into GLIBCXX space.
+
+       * include/bits/locale_classes.h: Move _M_id out of line, so that
+       locale::id::_S_highwater can be removed from the export list.
+       * src/locale.cc (locale::id::_M_id): Define.
+       
+2003-10-09  Andreas Tobler  <a.tobler@schweiz.ch>
+
+       * testsuite/lib/libstdc++.exp: Set LD_LIBRARY_PATH_64 for
+       SPARC64.
+
+2003-10-09  Paolo Carlini  <pcarlini@unitus.it>
+
+       PR libstdc++/11844
+       * config/os/aix/ctype_base.h: Fix 'alnum' and 'graph'
+       to conform to the requirements of 22.2.1.
+       * config/os/bsd/freebsd/ctype_base.h: Likewise.
+       * config/os/djgpp/ctype_base.h: Likewise.
+       * config/os/generic/ctype_base.h: Likewise.
+       * config/os/gnu-linux/ctype_base.h: Likewise.
+       * config/os/hpux/ctype_base.h: Likewise.
+       * config/os/irix/irix6.5/ctype_base.h: Likewise.
+       * config/os/solaris/solaris2.6/ctype_base.h: Likewise.
+       * config/os/solaris/solaris2.7/ctype_base.h: Likewise.
+       * testsuite/22_locale/ctype/11844.cc: New.
+
+       * config/locale/generic/ctype_members.cc (do_is):
+       Generically, use a bitmasksize of 15 (instead of 10), since
+       we don't know the numerical encoding of the various categories
+       in the underlying /usr/include/ctype.h.
+
+2003-10-09  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * src/string-inst.cc: Prune.
+       * testsuite/27_io/ios_base/cons/assign_neg.cc: Adjust line numbers.
+       * testsuite/27_io/ios_base/cons/copy_neg.cc: Same.
+       
+2003-10-09  Petur Runolfsson  <peturr02@ru.is>
+
+       * src/io-inst.cc: Don't include iostream.
+       * include/bits/ios_base.h (ios_base::failure): Use string.
+       * src/Makefile.am: Add ios_failure.cc.
+       * src/Makefile.in: Regenerate.
+       * src/ios.cc: Move ios_base::failure definitions to...
+       * src/ios_failure.cc: ...here. New.
+
+2003-10-09  Petur Runolfsson  <peturr02@ru.is>
+
+       PR libstdc++/9874
+       * include/bits/fstream.tcc (basic_filebuf::seekoff):
+       Move code needed for both seekoff and seekpos...
+       (basic_filebuf::_M_seek): ...here. New function.
+       (basic_filebuf::seekpos): Don't call seekoff, call _M_seek.
+       * include/std/std_fstream.h (basic_filebuf::_M_seek): Declare it.
+       * testsuite/27_io/basic_filebuf/seekpos/wchar_t/9874.cc: New test.
+
+       * testsuite/22_locale/locale/cons/12438.cc: Increase memory limit.
+
+2003-10-08  Paolo Carlini  <pcarlini@unitus.it>
+
+       * include/bits/locale_facets.tcc: More minor cosmetic
+       changes and const-ifications of some variables.
+
+2003-10-07  Paolo Carlini  <pcarlini@unitus.it>
+
+       * include/bits/locale_facets.tcc: Minor cosmetic changes
+       and const-ifications of some variables.
+
+       * include/bits/locale_facets.tcc
+       (money_get::do_get(..., string_type&)): Simplify an if-else.
+
+2003-10-06  Paolo Carlini  <pcarlini@unitus.it>
+
+       PR libstdc++/11740
+       * config/locale/gnu/ctype_members.cc (ctype<wchar_t>::do_is):
+       Fix to actually return (M & m) != 0 as per 22.2.1.1.2.
+       * config/locale/generic/ctype_members.cc: Same.
+       * testsuite/22_locale/ctype/is/wchar_t/11740.cc: New.
+
+2003-10-06  Paolo Carlini  <pcarlini@unitus.it>
+
+       * include/bits/locale_facets.tcc (__pad<>::_S_pad):
+       Improve performance-wise: avoid one traits::copy, avoid
+       the __builtin_alloca, streamline.
+
+2003-10-05  Paolo Carlini  <pcarlini@unitus.it>
+
+       * include/bits/locale_facets.tcc
+       (num_put::do_put(..., bool)): Prefer ?: to if-else.
+       (time_get::_M_extract_name): Qualify min with std::.
+       (__pad<>::_S_pad): Constify two variables; simplify an
+       if-else statement factoring out some code.
+
+       * include/bits/locale_facets.tcc: Minor cosmetic changes.
+
+2003-10-04  Paolo Carlini  <pcarlini@unitus.it>
+
+       * include/bits/locale_facets.tcc (num_get::_M_extract_float):
+       Constify a couple of variables.
+       (num_get::do_get(..., bool&)): Constify __c; prefer *__beg,
+       ++__beg to *__beg++.
+
+2003-10-04  Paolo Carlini  <pcarlini@unitus.it>
+            Petur Runolfsson  <peturr02@ru.is>
+
+       * include/ext/stdio_sync_filebuf.h: Don't include the whole
+       <fstream>, only <streambuf> and <cstdio>.
+
+2003-10-04  Paolo Carlini  <pcarlini@unitus.it>
+
+       PR libstdc++/12206
+       * include/bits/fstream.tcc (imbue): In case a codecvt facet
+       is not available, set _M_codecvt = 0.
+       * testsuite/27_io/basic_filebuf/imbue/12206.cc: New.
+
+2003-10-02  Harald Boehme  <boehme@informatik.hu-berlin.de>
+
+       PR libstdc++/12451
+       * libsupc++/cxxabi.h: Move forward declaration of __class_type_info.
+       
+2003-10-02  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * include/bits/locale_classes.h (locale::facet::_S_get_c_name): Add.
+       * src/locale.cc: Define.
+       * src/localename.cc: Use it.
+       * config/locale/generic/time_members.h: Same.
+       * config/locale/gnu/messages_members.h: Same.
+       * config/locale/gnu/time_members.h: Same.
+
+2003-10-02  Paolo Carlini  <pcarlini@unitus.it>
+
+       PR libstdc++/12232
+       * include/bits/fstream.tcc (seekoff): Ignore the openmode
+       argument; simplify.
+       * config/io/basic_file_stdio.h (__basic_file<char>::seekoff,
+       seekpos): Remove the openmode argument.
+       * config/io/basic_file_stdio.cc (__basic_file<char>::seekoff,
+       seekpos): Remove redundant placeholder for the openmode argument.
+       * testsuite/27_io/basic_filebuf/seekoff/char/12232.cc: New.
+       * testsuite/27_io/basic_filebuf/seekoff/char/3-in.cc: Tweak.
+       * testsuite/27_io/basic_filebuf/seekoff/char/3-out.cc: Likewise.
+       * testsuite/27_io/basic_filebuf/seekpos/char/3-in.cc: Likewise.
+       * testsuite/27_io/basic_filebuf/seekpos/char/3-out.cc: Likewise.
+
+2003-10-02  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * src/locale.cc (locale::_S_initialize): Use __gthread_active_p.
+       (locale::facet::_S_get_c_locale): Same.
+       
+2003-10-02  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * config/linker-map.gnu: Export _S_get_c_locale instead of
+       _S_c_locale object.
+
+2003-10-02  Petur Runolfsson  <peturr02@ru.is>
+
+       * config/locale/generic/c_locale.cc
+       (category_names, locale::_S_categories): Const qualify.
+       * config/locale/gnu/c_locale.cc: Same.
+       * config/locale/generic/time_members.h (__timepunct::__timepunct):
+       Copy string contents before assigning to _M_name_timepunct,
+       qualify strcpy and strlen with std::.
+       * config/locale/gnu/time_members.h: Same.
+       * config/locale/gnu/messages_members.h (messages::messages):
+       Copy string contents before assigning to _M_name_messages,
+       qualify strcpy and strlen with std::.
+       * config/os/gnu-linux/ctype_noninline.h
+       (ctype<char>::classic_table()): Don't call locale::classic().
+       * include/bits/locale_classes.h
+       (locale::_S_categories): Const qualify. 
+       (locale::_S_once, locale::_S_initialize_once,
+       locale::facet::_S_once, locale::facet::_S_initialize_once,
+       locale::facet::_S_get_c_locale): Declare.
+       (locale::_S_initialize): Don't define.
+       (locale::facet::_S_c_locale): Make private.
+       (locale::facet::_S_c_name): Same, const qualify.
+       (locale::_Impl::_Impl(facet**, size_t, bool)): Drop unused
+       parameters, add throw() specifier.
+       * include/bits/locale_facets.h (__timepunct::_M_name_timepunct,
+       messages::_M_name_messages): Const qualify.
+       * src/locale.cc
+       (locale::_S_once, locale::facet::_S_once): Define.
+       (locale::classic): Move initialization code...
+       (locale::_S_initialize_once): ...here.  
+       (locale::_S_initialize): Call _S_initialize_once through
+       __gthread_once.
+       (locale::facet::_S_initialize_once): Initialize _S_c_locale.
+       (locale::facet::_S_get_c_locale): Call _S_initialize_once through
+       __gthread_once before returning _S_c_locale.
+       * src/localename.cc (locale::_Impl::_Impl(facet**, size_t, bool)):
+       Drop unused parameters, add throw() specifier, don't initialize
+       locale::facet::_S_c_locale and _S_c_name.
+       
+       * config/locale/generic/messages_members.h:
+       Replace _S_c_locale with _S_get_c_locale().
+       * config/locale/gnu/c_locale.cc: Same.
+       * config/locale/gnu/messages_members.h: Same.
+       * config/locale/gnu/numeric_members.cc: Same.
+       * config/locale/gnu/time_members.cc: Same.
+       * config/os/gnu-linux/ctype_noninline.h: Same.
+       * include/bits/locale_facets.h: Same.
+       * include/bits/locale_facets.tcc: Same.
+       * src/codecvt.cc: Same.
+       * src/ctype.cc: Same.
+
+2003-10-02  Carlo Wood  <carlo@alinoe.com>
+
+       * include/bits/demangle.h (demangle<Allocator>::symbol(char const*)):
+       Decode symbols that start with _GLOBAL_[ID]_ differently: the
+       trailing part ends with a terminating zero and is not necessarily an
+       encoding.
+       * src/demangle.cc (): Same.
+       * testsuite/demangle/regression/cw-13.cc: Adjust for new output.
+
+2003-10-02  Paolo Carlini  <pcarlini@unitus.it>
+
+       * testsuite/22_locale/locale/cons/12438.cc: Use
+       __gnu_test::try_named_locale("").
+
+2003-10-01  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
+
+       * linkage.m4 (GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_0): Define.
+       (GLIBCXX_CHECK_STDLIB_SUPPORT): Use it to test for lrand48
+       instead of drand48.
+       * acconfig.h (HAVE_DRAND48): Renamed to HAVE_LRAND48.
+       * crossconfig.m4 (*-freebsd*): Define HAVE_LRAND48 instead of
+       HAVE_DRAND48.
+       * config.h.in, configure: Regenerate.
+       * include/bits/stl_algo.h: Use _GLIBCXX_HAVE_LRAND48 to guard
+       lrand48 use.
+
+2003-10-01  Nathan Myers  <ncm@cantrip.org>
+
+       * include/bits/locale_facets.tcc (time_put::put): Avoid
+       expensive *__s++, in favor of *__s, ++__s.
+
+2003-10-01  Paolo Carlini  <pcarlini@unitus.it>
+
+       * include/bits/locale_facets.tcc (time_put::put): Minor
+       tweak to the previous commit.
+
+2003-10-01  Paolo Carlini  <pcarlini@unitus.it>
+
+       PR libstdc++/12439
+       * include/bits/locale_facets.tcc (time_put::put): Deal
+       with the three issues pointed out by the PR.
+       * testsuite/22_locale/time_put/put/char/12439_1.cc: New.
+       * testsuite/22_locale/time_put/put/char/12439_3.cc: New.
+       * testsuite/22_locale/time_put/put/wchar_t/12439_1.cc: New.
+       * testsuite/22_locale/time_put/put/wchar_t/12439_2.cc: New.
+       * testsuite/22_locale/time_put/put/wchar_t/12439_3.cc: New.
+
+2003-09-30  Paolo Carlini  <pcarlini@unitus.it>
+
+       * include/bits/stl_algo.h: Minor cosmetic reformattings.
+
+2003-09-30  Paolo Carlini  <pcarlini@unitus.it>
+
+       * include/bits/stl_algo.h (search_n): Tweak, to spare the
+       first --__n.
+
+2003-09-30  Paolo Carlini  <pcarlini@unitus.it>
+
+       * testsuite/22_locale/locale/cons/12352.cc: Explicitly
+       qualify exception name.
+
+2003-09-30  Paolo Carlini  <pcarlini@unitus.it>
+
+       PR libstdc++/12438
+       * include/bits/locale_facets.tcc (locale::combine): Don't
+       leak memory if _M_replace_facet throws.
+       * testsuite/22_locale/locale/cons/12438.cc: New, from the PR.
+
+       * include/bits/locale_classes.h (locale::locale(const locale&,
+       _Facet*)): Tweak, use consistently _M_remove_reference.
+
+2003-09-30  Paolo Carlini  <pcarlini@unitus.it>
+
+       PR libstdc++/12352 (cont)
+       * src/localename.cc (locale::_Impl::_Impl(const char*, size_t)):
+       Don't leak __cloc; don't leak if any of the _M_init_facet(...)
+       calls fail.
+       (locale::_Impl::_Impl(const _Impl&, size_t)): Tweak.
+       (locale::_Impl::~_Impl): Don't do anything if !_M_facets,
+       !_M_caches, !_M_names.
+
+2003-09-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
+
+       * configure.host: Handle Solaris 2.5 micro releases explicitly.
+       Remove wildcards from Solaris 2.6, 7-9: there were no
+       micro releases.
+       Treat Solaris 10 and up like 7-9.
+
+2003-09-29  Paolo Carlini  <pcarlini@unitus.it>
+
+       * include/bits/stl_algo.h (search_n): Improve the previous
+       fix as suggested by Martin.
+
+2003-09-29  Paolo Carlini  <pcarlini@unitus.it>
+
+       PR libstdc++/12296
+       * include/bits/istream.tcc (peek): Set eofbit if sgetc
+       returns eof.
+       * testsuite/27_io/basic_istream/peek/char/12296.cc:
+       New, from the PR.
+
+2003-09-29  Nathan Myers  <ncm@cantrip.org>
+           Paolo Carlini  <pcarlini@unitus.it>
+
+       PR libstdc++/11400
+       * include/bits/stl_algo.h (search_n):
+       Use iterator_traits<>::difference_type for __n.
+       * testsuite/25_algorithms/search_n/11400.cc: New, from the PR.
+
+2003-09-29  Paolo Carlini  <pcarlini@unitus.it>
+
+       * testsuite/22_locale/locale/cons/12352.cc:
+       Use __attribute__((unused)) for test.
+
+2003-09-26  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * testsuite/22_locale/time_put/put/char/2.cc (test_02): Allow either 
+       "Son" or "So" as abbreviated name for Sunday in de_DE locale.
+       * testsuite/22_locale/time_put/put/wchar_t/2.cc (test_02): Likewise.
+
+2003-09-26  Brad Spencer  <spencer@infointeractive.com>
+
+       * testsuite/27_io/basic_filebuf/cons/wchar_t/10132-1.cc:
+       Explicitly qualify exceptions.
+       * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc: Same.
+       * testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc: Same.
+       * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same.
+       * testsuite/27_io/basic_ostream/sentry/char/3983-sstream.cc: Same.
+       
+2003-09-25  Paolo Carlini  <pcarlini@unitus.it>
+
+       PR libstdc++/12352
+       * src/localename.cc (locale::_Impl::_Impl(const _Impl&,
+       size_t)): Don't leak if memory allocations for _M_facets,
+       _M_caches, and _M_names fail.
+       (locale::_Impl::_Impl(const char*, size_t)): Ditto.
+       (locale::_Impl::_M_replace_categories(const _Impl*,
+       category)): Ditto.
+       (locale::_Impl::_M_install_facet(const locale::id*,
+       const facet*)): Ditto.
+       * include/bits/locale_classes.h (locale::locale(const locale&,
+       _Facet*)): Don't leak memory.
+       * testsuite/22_locale/locale/cons/12352.cc: New, from the PR.
+
+       * src/localename.cc (locale::_Impl::_Impl(facet**, size_t,
+       bool)): Qualify with std:: strcpy, tweak.
+       * include/bits/locale_classes.h
+       (locale::_Impl::_M_check_same_name): Qualify strcmp.
+
+2003-09-25  Brad Spencer  <spencer@infointeractive.com>
+
+       PR libstdc++/6072
+       * acinclude.m4: Split out checks for vfwscanf, vswscanf, vwscanf,
+       wcstof, iswblank.       
+       * aclocal.m4: Regenerate.
+       * config.h.in: Regenerate.
+       * configure: Regenerate.
+       * crossconfig.m4: Add in wchar_t bits for solaris crosses.
+       * config/io/basic_file_stdio.cc: Guard unistd.h.
+       * include/c_compatibility/wchar.h: Guard extra wchar_t functionality.
+       * include/c_std/std_cwchar.h: Same.
+       * include/c_std/std_cwctype.h: Same.
+       
+2003-09-25  Benjamin Kosnik  <bkoz@redhat.com>
+
+       PR libstdc++/11065
+       * config/locale/gnu/ctype_members.cc (ctype<wchar_t>::do_is): Fix.
+       * config/locale/generic/ctype_members.cc: Same.
+       * testsuite/22_locale/ctype/is/char/1.cc: Initialize mask.
+       * testsuite/22_locale/ctype/is/wchar_t/1.cc: Same.
+
+       * config/os/generic/ctype_inline.h: Update.
+       
+2003-09-25  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * src/Makefile.am (version_dep): New variable.
+       (libstdc___la_DEPENDENCIES): Use it to add dependency on
+       libstdc++-symbol.ver only when using symbol versioning.
+       * src/Makefile.in: Regenerate.
+
+2003-09-23  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * include/bits/locale_facets.tcc: Tweak to avoid warnings.
+       * testsuite/testsuite_hooks.h: Same.
+       * testsuite/*/*.cc: Same.
+
+2003-09-22  Petur Runolfsson  <peturr02@ru.is>
+
+       * include/bits/istream.tcc (basic_istream::read,
+       basic_istream::readsome, basic_istream::putback,
+       basic_istream::unget, operator>>(basic_istream, CharT)):
+       Avoid redundant setstate(failbit) calls when sentry::operator bool()
+       returns false.
+
+2003-09-22  Carlo Wood  <carlo@alinoe.com>
+
+       PR libstdc++/12365
+       * include/bits/demangle.h (qualifier(int, cv_qualifier_nt,
+       char const*, int, int)):  Remove unused identifier
+       cv_qualifier for overloaded constructor.
+
+2003-09-18  Benjamin Kosnik  <bkoz@redhat.com>
+
+       PR libstdc++/11504
+       * acinclude.m4 (GLIBCXX_EXPORT_FLAGS): Add -Wcast-qual to
+       WARN_FLAGS, remove -Wno-format.
+       * aclocal.m4: Regenerate.
+       * configure: Regenerate.
+
+2003-09-18  Petur Runolfsson  <peturr02@ru.is>
+
+       * config/io/basic_file_stdio.cc (sys_getc, sys_ungetc): Delete.
+       * config/io/basic_file_stdio.h: Same.
+       * include/std/std_fstream.h (__ctype_type): Delete.
+       * include/std/std_streambuf.h (__ctype_type, __state_type): Delete.
+       
+2003-09-17  Benjamin Kosnik  <bkoz@redhat.com>
+
+       PR libstdc++/12239
+       * configure.host (abi_baseline_pair): Error out on solaris2
+       configurations without a minor version number.
+
+2003-09-13  Phil Edwards  <phil@codesourcery.com>
+
+       * docs/doxygen/run_doxygen:  Clear GENERATE_TAGFILE entirely
+       if man pages are on.
+       * docs/doxygen/user.cfg.in:  And here.
+
+2003-09-10  Daniel Jacobowitz  <drow@mvista.com>
+           Andreas Jaeger <aj@suse.de>
+
+       PR libstdc++/12189
+       * acinclude.m4 (GLIBCXX_CONFIGURE_TESTSUITE): Don't build
+       abi_check if cross compiling.
+       * aclocal.m4: Regenerated.
+       * configure: Regenerated.
+
+2003-09-10  Jeffrey D. Oldham  <oldham@codesourcery.com>
+
+       * libsupc++/vec.cc (__cxa_vec_new2): If the allocator returns
+       NULL, return NULL.  This reflects a C++ ABI change 2003 Sep 05.
+       (__cxa_vec_new3): Likewise.
+
+2003-09-10  Petur Runolfsson  <peturr02@ru.is>
+
+       * include/bits/fstream.tcc (basic_filebuf::seekoff):
+       Use codecvt::length to handle variable-width stateless encodings
+       correctly.
+       * testsuite/27_io/basic_filebuf/seekoff/wchar_t/1.cc: New test.
+       * testsuite/27_io/basic_filebuf/seekoff/wchar_t/2.cc: New test.
+
+2003-09-10  Alan Modra  <amodra@bigpond.net.au>
+
+       * config/io/basic_file_stdio.cc (_M_open_mode): Assign __p_mode
+       rather than or'ing.
+
+2003-09-09  Alan Modra  <amodra@bigpond.net.au>
+
+       * configure: Regenerate.
+
+2003-09-09  David Edelsohn  <edelsohn@gnu.org>
+
+       * src/ios.cc (ios_base::Init::Init): Remove unnecessary
+       qualifier from _S_synced_with_stdio.
+
+2003-09-09  Bernardo Innocenti  <bernie@develer.com>
+
+       * include/c_std/std_cstdlib.h: Avoid using missing C library symbols.
+
+2003-09-04  Petur Runolfsson  <peturr02@ru.is>
+
+       PR libstdc++/9028
+       * include/bits/fstream.tcc
+       (basic_filebuf::_M_destroy_internal_buffer): Destroy _M_ext_buf.
+       (basic_filebuf::basic_filebuf): Initialize _M_ext_buf,
+       _M_ext_buf_size, _M_ext_next and _M_ext_end.
+       (basic_filebuf::underflow): Handle variable-width stateless
+       encodings (codecvt::encoding() == 0), including UTF-8.
+       * include/std/std_fstream.h (basic_filebuf):
+       Declare _M_ext_buf, _M_ext_buf_size, _M_ext_next, _M_ext_end.
+       * testsuite/27_io/basic_filebuf/underflow/wchar_t/1.cc: New test.
+       * testsuite/27_io/basic_filebuf/underflow/wchar_t/2.cc: New test.
+       * testsuite/27_io/basic_filebuf/underflow/wchar_t/3.cc: New test.
+       * testsuite/27_io/basic_filebuf/underflow/wchar_t/4.cc: New test.
+       * testsuite/27_io/basic_filebuf/underflow/wchar_t/5.cc: New test.
+       * testsuite/27_io/objects/wchar_t/12.cc: New test.
+       * testsuite/27_io/objects/wchar_t/13.cc: New test.
+
+2003-09-04  Jonathan Wakely  <redi@gcc.gnu.org>
+
+       * docs/html/faq/index.html: Note that a namespace alias can't be
+       used when specialising templates in extension namespace.
+       * docs/html/faq/index.txt: Regenerate.
+
+2003-09-03  Petur Runolfsson  <peturr02@ru.is>
+
+       PR libstdc++/12048
+       * include/ext/stdio_sync_filebuf.h
+       (stdio_sync_filebuf::_M_unget_buf): Declare it.
+       (stdio_sync_filebuf::stdio_sync_filebuf): Initialize _M_unget_buf.
+       (stdio_sync_filebuf::uflow): Store the returned character in
+       _M_unget_buf.
+       (stdio_sync_filebuf::pbackfail): If argument is eof(), pass
+       _M_unget_buf to syncungetc(). Set _M_unget_buf to eof().
+       (stdio_sync_filebuf<char>::xsgetn): Store last read character in
+       _M_unget_buf, if any, else eof().
+       (stdio_sync_filebuf<wchar_t>::xsgetn: Store last read character in
+       _M_unget_buf, if any, else eof().
+       * testsuite/27_io/objects/char/12048.cc: Rename to...
+       * testsuite/27_io/objects/char/12048-1.cc: ...this.
+       * testsuite/27_io/objects/char/12048-2.cc: New test.
+       * testsuite/27_io/objects/char/12048-3.cc: New test.
+       * testsuite/27_io/objects/char/12048-4.cc: New test.
+       * testsuite/27_io/objects/char/12048-5.cc: New test. XFAIL.
+       * testsuite/27_io/objects/wchar_t/12048-1.cc: New test.
+       * testsuite/27_io/objects/wchar_t/12048-2.cc: New test.
+       * testsuite/27_io/objects/wchar_t/12048-3.cc: New test.
+       * testsuite/27_io/objects/wchar_t/12048-4.cc: New test.
+       * testsuite/27_io/objects/wchar_t/12048-5.cc: New test. XFAIL.
+       * testsuite/ext/stdio_sync_filebuf_char.cc
+       (test02, test03, test04, test05): New tests.
+       * testsuite/ext/stdio_sync_filebuf_wchar_t.cc
+       (test02, test03, test04, test05): New tests.
+
+2003-09-03  Petur Runolfsson  <peturr02@ru.is>
+
+       * docs/html/27_io/howto.html: setbuf(0, 0) has no effect on
+       stringbuf or strstreambuf. Fix typos.
+
+2003-09-02  Phil Edwards  <phil@codesourcery.com>
+
+       * acinclude.m4 (GLIBCXX_ENABLE_HOSTED):  #define _GLIBCXX_HOSTED
+       appropriately.
+       * config.h.in:  Add _GLIBCXX_HOSTED.
+       * libsupc++/eh_term_handler.cc:  Test it here; initialize
+       __terminate_handler to std::abort if freestanding.
+       * aclocal.m4, configure:  Regenerated.
+       * docs/html/configopts.html:  Document --disable-hosted-libstdcxx.
+
+2003-08-29  Nathan Myers  <ncm@cantrip.org>
+       
+       PR libstdc++/11990      
+       * include/bits/locale_facets.tcc (__pad): delete dead code.
+
+2003-08-28  Alan Modra  <amodra@bigpond.net.au>
+
+       * configure.ac: Test $with_cross_host against $build_alias, not $build.
+       * configure: Regenerate.
+
+2003-08-27  Petur Runolfsson  <peturr02@ru.is>
+
+       * testsuite/27_io/objects/wchar_t/10.cc: Move wcout stuff...
+       * testsuite/27_io/objects/wchar_t/11.cc: ...here. New file.
+
+2003-08-27  Phil Edwards  <pme@gcc.gnu.org>
+
+       * Makefile.am:  Remove trailing whitespace.  Remove needless
+       "foo = @foo@" assignments.  Replace direct uses of @foo@ with $(foo).
+       * include/Makefile.am:  Likewise.
+       * libmath/Makefile.am:  Likewise.
+       * libsupc++/Makefile.am:  Likewise.
+       * po/Makefile.am:  Likewise.
+       * src/Makefile.am:  Likewise.
+       * testsuite/Makefile.am:  Likewise.
+
+       * Makefile.in, include/Makefile.in, libmath/Makefile.in,
+       libsupc++/Makefile.in, po/Makefile.in, src/Makefile.in,
+       testsuite/Makefile.in:  Regenerated.
+
+2003-08-27  Phil Edwards  <pme@gcc.gnu.org>
+
+       * acinclude.m4 (GLIBCXX_EXPORT_INCLUDES):  Change quoting of
+       includedir.
+       * aclocal.m4, configure:  Regenerate.
+
+2003-08-27  Daniel Jacobowitz  <drow@mvista.com>
+
+       * acinclude.m4: Include no-executables.m4.
+       * configure.ac: Uncomment GCC_NO_EXECUTABLES.
+       * aclocal.m4: Regenerated.
+       * configure: Regenerated.
+
+2003-08-27  Daniel Jacobowitz  <drow@mvista.com>
+
+       * acinclude.m4: Don't call AC_ISC_POSIX.
+       * aclocal.m4: Regenerated.
+       * configure: Regenerated.
+
+2003-08-27  Phil Edwards  <pme@gcc.gnu.org>
+
+       * acinclude.m4 (GLIBCXX_CONDITIONAL):  New macro.  Wrap
+       AM_CONDITIONAL.  Replace all calls to AM_CONDITIONAL with this one.
+       (GLIBCXX_ENABLE_HOSTED):  New macro, sets new variable is_hosted,
+       used elsewhere in this file.
+       (GLIBCXX_EVALUATE_CONDITIONALS):  New macro...
+       * configure.ac:  ...called here to expand all conditionals.
+       * Makefile.am:  Conditionalize SUBDIRS on GLIBCXX_HOSTED.
+       * include/Makefile.am:  Remove redundant gxx_include_dir assignment.
+       (install-freestanding-headers):  New target, a subset of
+       install-headers.  Conditionalize install-data-local on GLIBCXX_HOSTED.
+
+       * aclocal.m4, configure, Makefile.in, include/Makefile.in,
+       libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
+       src/Makefile.in, testsuite/Makefile.in:  Regenerated.
+
+2003-08-26  Phil Edwards  <pme@gcc.gnu.org>
+
+       * docs/doxygen/run_doxygen:  Shell fixes.  Remove hardcoded local
+       pathnames from generated tag file.
+
+2003-08-26  Phil Edwards  <pme@gcc.gnu.org>
+
+       * Makefile.am:  Add comment.
+       * acinclude.m4 (GLIBCXX_CONFIGURE):  Set new glibcxx_SUBDIRS and
+       SUBDIRS variables.
+       * configure.ac:  Use them both here, instead of hardcoded lists.
+
+       * fragment.am:  Add STAMP varaible.
+       * include/Makefile.am:  Cosmetic whitespace cleanup.  Use $(LN_S)
+       instead of @LN_S@.
+       (stamp-*):  Move file creation rule outside of 'if' branches to
+       ensure the stamp-* files are actually updated.  Use $(STAMP).
+       * src/Makefile.am:  Remove now-nonexistant variable.
+       * libsupc++/Makefile.am:  Likewise.  Snap the assignment chain
+       for -prefer-pic.
+       * po/Makefile.am:  Include same fragment as all the others.
+
+       * aclocal.m4, configure, Makefile.in, include/Makefile.in,
+       libsupc++/Makefile.in, po/Makefile.in, src/Makefile.in:  Regenerated.
+
+2003-08-26  Loren J. Rittle  <ljrittle@acm.org>
+
+       * testsuite/data/cin_unget-1.txt: New.
+       * testsuite/27_io/objects/char/12048.cc: New.
+
+2003-08-25  Zack Weinberg  <zack@codesourcery.com>
+
+       * config/os/hpux/os_defines.h: Unconditionally define
+       _GLIBCXX_GTHREAD_USE_WEAK to 0.
+
+2003-08-19  Geoffrey Keating  <geoffk@apple.com>
+
+       * crossconfig.m4 (*-darwin*): Add a large and boring stanza for
+       crosses to Darwin targets.
+       * configure: Regenerate.
+
+2003-08-19  Petur Runolfsson  <peturr02@ru.is>
+
+       * include/ext/ropeimpl.h: #include <ostream> instead of <iostream>
+
+2003-08-17  Phil Edwards  <pme@gcc.gnu.org>
+
+       * configure.ac:  GCC_NO_EXECUTABLES was supposed to be commented
+       in the patch from 3 minutes ago.  Boy, is my face red.
+       * configure:  At least I remembered to regenerate this.
+
+2003-08-17  Phil Edwards  <pme@gcc.gnu.org>
+
+       * acinclude.m4 (GLIBCXX_EXPORT_INCLUDES):  Remove LIBMATH_INCLUDES
+       and LIBSUPCXX_INCLUDES.  Re-purpose TOPLEVEL_INCLUDES to refer to
+       things from the top level.
+       * configure.ac (GLIBCXX_IS_NATIVE):  Determine earlier and re-order.
+       Comment out the conditionals for CANADIAN and GLIBCXX_BUILD_LIBMATH
+       (currently unused).  Strip the fake-VPATH shell fragment from
+       automake-generated rules, if present.
+       * linkage.m4:  Add comment.
+
+       * fragment.am:  New file, containing factored-out common settings.
+       (AM_CPPFLAGS):  Absorb the deprecated INCLUDES variable contents.
+       * Makefile.am:  Include fragment.am.  Remove common variables.
+       * include/Makefile.am:  Likewise.
+       * libmath/Makefile.am:  Likewise.
+       * libsupc++/Makefile.am:  Likewise.
+       * po/Makefile.am:  Likewise.  Print rules during check.
+       * src/Makefile.am:  Likewise.
+       * testsuite/Makefile.am:  Likewise.
+
+       * aclocal.m4, configure, Makefile.in, include/Makefile.in,
+       libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
+       src/Makefile.in, testsuite/Makefile.in:  Regenerate.
+
+2003-08-11  John Levon  <levon@movementarian.org>
+
+       * docs/html/ext/howto/guide.html (GLIBCXX_FORCE_NEW): Update
+       remaining places for the name change from GLIBCPP_FORCE_NEW
+       to GLIBCXX_FORCE_NEW
+
+2003-08-11  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * include/bits/basic_ios.h: Remove *_iter typedefs, change num*
+       typedefs to num_*.
+       * include/bits/basic_ios.tcc: Same.
+       * include/bits/istream.tcc: Same.
+       * include/bits/locale_facets.h: Same.
+       * include/bits/ostream.tcc: Same.
+       * include/std/std_istream.h: Same.
+       * include/std/std_ostream.h: Same.
+       * testsuite/26_numerics/complex_inserters_extractors.cc: Fix.
+
+       * include/ext/rope: Remove build warning.
+
+2003-08-11  Andreas Jaeger  <aj@suse.de>
+
+       * include/Makefile.am (stamp-c_base): Add dependency on stamp-bits
+       to make SMP-safe.
+       * include/Makefile.in: Regenerated.
+
+2003-08-11  Phil Edwards  <pme@gcc.gnu.org>
+
+       * acinclude.m4 (GLIBCXX_CONFIGURE):  Unprecious CC and CFLAGS
+       when calling AC_PROG_CC.
+       * aclocal.m4, configure:  Regenerate.
+
+2003-08-11  Phil Edwards  <pme@gcc.gnu.org>
+
+       * acinclude.m4:  Properly quote variable which will be expanded
+       inside makefiles.  Use CXX instead of CC to extract compiler info.
+       * configure.ac (AC_INIT):  Use the new 4-arg form to finally get the
+       correct form in PACKAGE.
+       * aclocal.m4, configure:  Regenerate.
+
+2003-08-08  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * testsuite/Makefile.am (check-abi): Change libstdc++-v3 to libstdc++.
+       (check-abi-verbose): Same.
+       * testsuite/testsuite_performance.h (report_performance): Same.
+
+2003-08-08  Loren J. Rittle  <ljrittle@acm.org>
+
+       * testsuite/testsuite_performance.h (__FreeBSD__): Add fake mallinfo.
+
+2003-08-07  Doug Gregor  <dgregor@apple.com>
+
+       * include/bits/char_traits.h (char_traits::not_eof): Match operand
+       types in ? :.
+
+2003-08-07  Bernardo Innocenti  <bernie@develer.com>
+
+       PR libstdc++/11784
+       * libstdc++-v3/config/cpu/m68k/atomicity.h (__exchange_and_add):
+       Replace variants with new BSET-based version.
+
+2003-08-07  Carlo Wood  <carlo@alinoe.com>
+
+       * include/bits/demangle.h: Do not use cctype functions that depend
+       on locale.
+
+2003-08-05  Phil Edwards  <pme@gcc.gnu.org>
+
+       * configure.in:  Rename...
+       * configure.ac:  ...to this.
+       * docs/html/17_intro/porting.texi:  Update name.
+
+       * docs/html/17_intro/porting.html:  Regenerate.
+       * config.h.in, Makefile.in, include/Makefile.in, libmath/Makefile.in,
+       libsupc++/Makefile.in, po/Makefile.in, src/Makefile.in,
+       testsuite/Makefile.in:  Regenerate (picks up new dependancy).
+
+2003-08-05  Phil Edwards  <pme@gcc.gnu.org>
+
+       * acinclude.m4 (GLIBCXX_ENABLE_SJLJ_EXCEPTIONS):  Put down the crack
+       pipe, open the window to let out the fumes, redo the option-handling
+       logic to properly execute the detection test.
+       * aclocal.m4, configure:  Regenerate.
+
+2003-08-04  Phil Edwards  <pme@gcc.gnu.org>
+
+       Convert to new autotools.
+       * acconfig.h:  Update with correct names.
+       * configure.host (ATOMICITYH):  Rename to atomicity_include_dir.
+       (qnx6.[12]*):  'q' comes before 's', not after 'w'.
+       * configure.in:  Update.  Split hardcoded cross-configury settings
+       out to...
+       * crossconfig.m4:  ...here.  New file.  Contents untouched.
+       * acinclude.m4:  Reorganize and rewrite as needed.  Split large
+       chunks out to...
+       * linkage.m4:  ...here.  New file.  Math and stdlib linkage tests.
+       Contents untouched.
+       * scripts/testsuite_flags.in:  Update.
+
+       * Makefile.am:  Remove unneeded AUTOMAKE_OPTIONS settings and other
+       variables (already generated by automake).
+       * include/Makefile.am:  Ditto.
+       * libmath/Makefile.am:  Ditto.
+       * libsupc++/Makefile.am:  Ditto.
+       * po/Makefile.am:  Ditto.
+       * src/Makefile.am:  Ditto.
+
+       * aclocal.m4:  Regenerate using new versions.
+       * config.h.in:  Ditto.
+       * configure:  Ditto.
+       * Makefile.in:  Ditto.
+       * include/Makefile.in:  Ditto.
+       * libmath/Makefile.in:  Ditto.
+       * libsupc++/Makefile.in:  Ditto.
+       * po/Makefile.in:  Ditto.
+       * src/Makefile.in:  Ditto.
+       * testsuite/Makefile.in:  Ditto.
+
+2003-08-04  Phil Edwards  <pme@gcc.gnu.org>
+
+       * po/libstdc++.pot:  Re-extract/regenerate.
+
+2003-08-04  Phil Edwards  <pme@gcc.gnu.org>
+
+       * testsuite/Makefile.am (DEJATOOL,EXPECT,RUNTEST,RUNTESTFLAGS):
+       Remove unneeded variable assignments.  Leave them for automake.
+       * testsuite/lib/libstdc++-v3.exp:  Rename...
+       * testsuite/lib/libstdc++.exp:  ...to this.  Adjust function names
+       accordingly.
+       * testsuite/libstdc++-v3.dg/dg.exp:  Rename...
+       * testsuite/libstdc++-dg/normal.exp:  ...to this.  Adjust function
+       names accordingly.
+
+2003-08-04  Phil Edwards  <pme@gcc.gnu.org>
+
+       * docs/doxygen/guide.html:  run_doxygen uses bash.
+       * docs/doxygen/mainpage.html:  We'll be shipping tag files.
+       * docs/doxygen/run_doxygen:  Tweaks and improvements.
+       * docs/doxygen/user.cfg.in:  Set GENERATE_TAGFILE.
+       * docs/html/install.html:  Update autoconf/automake requirements.
+       * docs/html/test.html:  Add section describing DejaGNU support.
+       * docs/html/17_intro/confdeps.dot:  New file, generates...
+       * docs/html/17_intro/confdeps.png:  ...this new file.
+       * docs/html/Makefile:  Generated here.
+       * docs/html/17_intro/configury.html:  New file.
+
+2003-07-31  Phil Edwards  <pme@gcc.gnu.org>
+
+       * testsuite/lib/libstdc++-v3-dg.exp:  Rename...
+       * testsuite/lib/libstdc++-v3.exp:  ...to this.
+       * testsuite/libstdc++-v3.dg/dg.exp:  No special case needed now.
+
+2003-07-31  Doug Gregor  <dgregor@apple.com>
+
+       Add user specialization tests.
+       * testsuite/23_containers/deque/1.cc: New.
+       * testsuite/23_containers/list/1.cc: New.
+       * testsuite/23_containers/map/1.cc: New.
+       * testsuite/23_containers/multimap/1.cc: New.
+       * testsuite/23_containers/multiset/1.cc: New.
+       * testsuite/23_containers/set/1.cc: New.
+       * testsuite/23_containers/vector/1.cc: New.
+
+2003-07-31  Benjamin Kosnik  <bkoz@redhat.com>
+
+       Reshuffle 23_containers testsuite.
+       * 23_containers/adaptors.cc, bitset_ctor.cc,bitset_members.cc,
+       bitset_shift.cc, deque_ctor.cc, deque_operators.cc,
+       list_capacity.cc, list_ctor.cc, list_modifiers.cc, list_operators.cc,
+       map_insert.cc, map_operators.cc, map_operators_neg.cc, multiset.cc,
+       set_operators_neg.cc, vector_bool.cc, vector_capacity.cc,
+       vector_ctor.cc, vector_element_access.cc, vector_modifiers.cc,
+       vector_resize.cc: Split into...
+       * 23_containers/bitset/cons/1.cc: New.
+       * 23_containers/bitset/cons/6282.cc: New.
+       * 23_containers/bitset/count/6124.cc: New.
+       * 23_containers/bitset/operations/1.cc: New.
+       * 23_containers/bitset/operations/2.cc: New.
+       * 23_containers/bitset/test/1.cc: New.
+       * 23_containers/bitset/to_ulong/1.cc: New.
+       * 23_containers/deque/cons/1.cc: New.
+       * 23_containers/deque/cons/2.cc: New.
+       * 23_containers/deque/operators/1.cc: New.
+       * 23_containers/list/capacity/1.cc: New.
+       * 23_containers/list/cons/1.cc: New.
+       * 23_containers/list/cons/2.cc: New.
+       * 23_containers/list/cons/3.cc: New.
+       * 23_containers/list/cons/4.cc: New.
+       * 23_containers/list/cons/5.cc: New.
+       * 23_containers/list/cons/6.cc: New.
+       * 23_containers/list/cons/7.cc: New.
+       * 23_containers/list/cons/8.cc: New.
+       * 23_containers/list/cons/9.cc: New.
+       * 23_containers/list/modifiers/1.cc: New.
+       * 23_containers/list/modifiers/2.cc: New.
+       * 23_containers/list/modifiers/3.cc: New.
+       * 23_containers/list/operators/1.cc: New.
+       * 23_containers/list/operators/2.cc: New.
+       * 23_containers/list/operators/3.cc: New.
+       * 23_containers/list/operators/4.cc: New.
+       * 23_containers/map/insert/1.cc: New.
+       * 23_containers/map/operators/1.cc: New.
+       * 23_containers/map/operators/1_neg.cc: New.
+       * 23_containers/multiset/insert/1.cc: New.
+       * 23_containers/priority_queue/members/7161.cc: New.
+       * 23_containers/queue/members/7157.cc: New.
+       * 23_containers/set/operators/1_neg.cc: New.
+       * 23_containers/stack/members/7158.cc: New.
+       * 23_containers/vector/bool/1.cc: New.
+       * 23_containers/vector/bool/6886.cc: New.
+       * 23_containers/vector/capacity/1.cc: New.
+       * 23_containers/vector/capacity/2.cc: New.
+       * 23_containers/vector/capacity/8230.cc: New.
+       * 23_containers/vector/cons/1.cc: New.
+       * 23_containers/vector/cons/2.cc: New.
+       * 23_containers/vector/cons/3.cc: New.
+       * 23_containers/vector/cons/4.cc: New.
+       * 23_containers/vector/cons/6513.cc: New.
+       * 23_containers/vector/element_access/1.cc: New.
+       * 23_containers/vector/modifiers/1.cc: New.
+       * 23_containers/vector/modifiers/2.cc: New.
+       * 23_containers/vector/resize/1.cc: New.
+
+2003-07-31  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
+
+       * testsuite/thread/pthread1.cc: Add alpha*-*-osf* to dg-do run,
+       dg-options.
+       * testsuite/thread/pthread2.cc: Likewise.
+       * testsuite/thread/pthread3.cc: Likewise.
+       * testsuite/thread/pthread4.cc: Likewise.
+       * testsuite/thread/pthread5.cc: Likewise.
+       * testsuite/thread/pthread6.cc: Likewise.
+       * testsuite/thread/pthread7-rope.cc: Likewise.
+
 2003-07-30  Phil Edwards  <pme@gcc.gnu.org>
 
        * include/bits/c++config:  Partial reversion (comment placement) of
        * include/c/std_cwctype.h: Same.
        * include/c_std/cmath.tcc: Same.
        * include/c_std/std_cmath.h: Same.
-       
+
 2003-07-30  Gawain Bolton  <gp.bolton@computer.org>
 
-       PR libstdc++/11504.  
+       PR libstdc++/11504.
        * include/bits/stl_tree.h: Replace C-style casts with C++-style
        casts.  Changes to avoid casting away constness.  Eliminate
        _Rb_tree_base_iterator class.  Change _Rb_tree_iterator to use
        initialization lists.  Move out implementation of __black_count()
        to...
-        * src/stl_tree.cc: ...here and rename _Rb_tree_black_count().
-        Rename_Rb_tree_base_iterator::_M_increment() to
-        _Rb_tree_increment and _Rb_tree_base_iterator::_M_decrement() to
-        _Rb_tree_decrement.
-        * config/linker-map.gnu: Add and change symbols here.
+       * src/stl_tree.cc: ...here and rename _Rb_tree_black_count().
+       Rename_Rb_tree_base_iterator::_M_increment() to
+       _Rb_tree_increment and _Rb_tree_base_iterator::_M_decrement() to
+       _Rb_tree_decrement.
+       * config/linker-map.gnu: Add and change symbols here.
 
 2003-07-30  Jonathan Wakely  <redi@gcc.gnu.org>
 
        Change DEBUG_ASSERT to _GLIBCXX_ASSERT.
        * testsuite/libstdc++-v3.dg/dg.exp: Same.
        * testsuite/lib/libstdc++-v3-dg.exp (libstdc++-v3-init): Same.
-       * testsuite/23_containers/bitset_ctor.cc: 
+       * testsuite/23_containers/bitset_ctor.cc:
        * testsuite/17_intro/header_ciso646.cc: Remove DEBUG_ASSERT.
        * testsuite/18_support/numeric_limits.cc: Same.
        * testsuite/21_strings/basic_string/append/char/1.cc: Same.
        * testsuite/21_strings/basic_string/insert/char/2.cc: Same.
        * testsuite/21_strings/basic_string/insert/wchar_t/1.cc: Same.
        * testsuite/21_strings/basic_string/insert/wchar_t/2.cc: Same.
-       * testsuite/21_strings/basic_string/inserters_extractors/char/1.cc: 
-       * testsuite/21_strings/basic_string/inserters_extractors/char/4.cc: 
-       * testsuite/21_strings/basic_string/inserters_extractors/char/5.cc: 
-       * testsuite/21_strings/basic_string/inserters_extractors/char/6.cc: 
-       * testsuite/21_strings/basic_string/inserters_extractors/char/7.cc: 
-       * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/1.cc: 
-       * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/4.cc: 
-       * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/5.cc: 
-       * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/6.cc: 
-       * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/7.cc: 
+       * testsuite/21_strings/basic_string/inserters_extractors/char/1.cc:
+       * testsuite/21_strings/basic_string/inserters_extractors/char/4.cc:
+       * testsuite/21_strings/basic_string/inserters_extractors/char/5.cc:
+       * testsuite/21_strings/basic_string/inserters_extractors/char/6.cc:
+       * testsuite/21_strings/basic_string/inserters_extractors/char/7.cc:
+       * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/1.cc:
+       * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/4.cc:
+       * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/5.cc:
+       * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/6.cc:
+       * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/7.cc:
        * testsuite/21_strings/basic_string/operators/char/1.cc: Same.
        * testsuite/21_strings/basic_string/operators/char/2.cc: Same.
        * testsuite/21_strings/basic_string/operators/wchar_t/1.cc: Same.
        * testsuite/27_io/basic_istream/extractors_arithmetic/char/09.cc: Same.
        * testsuite/27_io/basic_istream/extractors_arithmetic/char/10.cc: Same.
        * testsuite/27_io/basic_ostream/inserters_arithmetic/char/1.cc: Same.
-       * testsuite/27_io/basic_ostream/inserters_arithmetic/wchar_t/1.cc: 
-        Same.
-       
+       * testsuite/27_io/basic_ostream/inserters_arithmetic/wchar_t/1.cc:
+       Same.
+
 2003-07-28  Phil Edwards  <pme@gcc.gnu.org>
 
        * docs/doxygen/user.cfg.in, docs/html/abi.txt, docs/html/debug.html,
 
 2003-07-24  Nathan Myers  <ncm-nospam@cantrip.org>
 
-        * testsuite/23_containers/map_operators.cc: Conform to 
-        container requirement as value must be Assignable.
+       * testsuite/23_containers/map_operators.cc: Conform to
+       container requirement as value must be Assignable.
 
 2003-07-23  Alexandre Oliva  <aoliva@redhat.com>
 
 2003-07-21  Doug Gregor  <dgregor@apple.com>
 
        * include/bits/boost_concept_check.h:
-       (_EqualityComparableConcept::__constraints): Remove != from the 
-        list of constraints; it is not listed in Table 28 of the C++98 
-        standard.
+       (_EqualityComparableConcept::__constraints): Remove != from the
+       list of constraints; it is not listed in Table 28 of the C++98
+       standard.
 
 2003-07-18  Andreas Jaeger  <aj@suse.de>
 
        * config/abi/x86_64-linux-gnu/baseline_symbols.txt: Regenerated.
 
 2003-07-17  Benjamin Kosnik  <bkoz@redhat.com>
-       
+
        * config/linker-map.gnu: Add __moneypunct_cache, __timepunct_cache.
        * config/locale/generic/messages_members.h: Tweaks.
        * config/locale/generic/monetary_members.cc
 
        * include/bits/locale_facets.h (__num_base::_S_atoms_in): Add -+xX.
        (num_get::_M_convert_int): To _M_insert_int.
-       (num_get::_M_convert_float): To _M_insert_float.        
+       (num_get::_M_convert_float): To _M_insert_float.
        * include/bits/locale_facets.tcc (num_get::_M_extract_float):
        Use caches for ctype, num_get.
        (num_get::_M_extract_int): Same.
 2003-07-15  Jerry Quinn  <jlquinn@optonline.net>
 
        * include/bits/stl_algo.h (includes, set_union, set_intersection,
-        set_difference, set_symmetric_difference, max_element, min_element,
-        next_permutation, prev_permutation, find_first_of, find_end):
-        Document.
+       set_difference, set_symmetric_difference, max_element, min_element,
+       next_permutation, prev_permutation, find_first_of, find_end):
+       Document.
        * include/bits/stl_algobase.h (copy,copy_backward):  Clarify overlap
-        restrictions in docs.
+       restrictions in docs.
        * include/bits/stl_heap.h (push_heap, pop_heap, make_heap, sort_heap):
-        Document.
+       Document.
        * docs/doxygen/doxygroups.cc (setoperations):  New group.
 
 2003-07-15  Jerry Quinn  <jlquinn@optonline.net>
 
-        * include/bits/basic_string.h:  Document public functions.
+       * include/bits/basic_string.h:  Document public functions.
        * docs/doxygen/TODO:  Update c21 todo.
 
 2003-07-15  Jerry Quinn  <jlquinn@optonline.net>
        PR libstdc++/11378
        * include/std/std_fstream.h (xsputn): Declare only.
        * include/bits/fstream.tcc (xsputn): Define, optimize for the
-       always_noconv() case: when __n is sufficiently large flush 
+       always_noconv() case: when __n is sufficiently large flush
        the buffer and issue a direct write, if possible combining the
        two with writev in __basic_file<>::xsputn_2.
        * config/io/basic_file_stdio.h (__basic_file<>::xsputn_2):
 
        * testsuite/27_io/ios_base/cons/assign_neg.cc: Fix line numbers.
        * testsuite/27_io/ios_base/cons/copy_neg.cc: Same.
-       
+
 2003-07-14  Gabriel Dos Reis  <gcc@integrable-solutions.net>
 
        * config/locale/gnu/c_locale.h (__convert_from_v): Include
 2003-07-09  Benjamin Kosnik  <bkoz@redhat.com>
 
        * include/bits/locale_facets.tcc: Use function object for
-       __use_cache instead of template function. Partially specialize for 
+       __use_cache instead of template function. Partially specialize for
        __numpunct<_CharT>.
        * include/bits/locale_classes.h: Update friend declaration for
        __use_cache.
        * testsuite/22_locale/numpunct/members/wchar_t/cache_2.cc: New.
        * testsuite/22_locale/numpunct/members/pod/1.cc: New.
        * testsuite/22_locale/numpunct/members/pod/2.cc: New.
-       
+
 2003-07-09  Jerry Quinn  <jlquinn@optonline.net>
 
        * src/ios.cc (_M_grow_words):  Fix spelling.
        * include/Makefile.am (ext_headers): Add pod_char_traits.h.
        * include/Makefile.in: Regenerate.
        * docs/html/21_strings/howto.html: Update.
-               
+
 2003-07-08  Gawain Bolton  <gp.bolton@computer.org>
 
        * testsuite/performance/list_create_fill_sort.cc: New.
        * config/locale/generic/numeric_members.cc: Correct type info.
        * config/locale/gnu/numeric_members.cc: Same.
        * include/bits/locale_facets.h: Same.
-       
+
        * include/bits/char_traits.h: Correct spacing.
 
        * src/locale.cc: Wrap to 80 col.
-       
+
 2003-07-07  Paolo Carlini  <pcarlini@unitus.it>
 
        * include/std/std_complex.h: Partially revert last
 2003-07-05  Gawain Bolton  <gp.bolton@computer.org>
 
        * include/bits/stl_tree.h: _Rb_tree_rebalance():  Add local
-          variable for grandparent and use const
+         variable for grandparent and use const
 
 2003-07-05  David Billinghurst <David.Billinghurst@riotinto.com>
 
        * testsuite/Makefile.am: Same.
        * testsuite/Makefile.in: Regenerate.
        * po/Makefile.am: Same.
-       * po/Makefile.in: Regenerate.   
+       * po/Makefile.in: Regenerate.
        * libsupc++/Makefile.am: Same.
-       * libsupc++/Makefile.in: Regenerate.    
+       * libsupc++/Makefile.in: Regenerate.
        * libmath/Makefile.am: Same.
-       * libmath/Makefile.in: Regenerate.      
+       * libmath/Makefile.in: Regenerate.
        * include/Makefile.am: Same.
-       * include/Makefile.in: Regenerate.      
+       * include/Makefile.in: Regenerate.
        * src/Makefile.am: Same.
-       * src/Makefile.in: Regenerate.  
+       * src/Makefile.in: Regenerate.
        * acconfig.h: Same.
        * configure.host: Same.
        * configure.in: Same.
        * include: Same, standardize include guards.
        * config: Same.
        * libsupc++: Same.
-       
+
 2003-07-04  Zack Weinberg  <zack@codesourcery.com>
 
        * testsuite/22_locale/collate/compare/wchar_t/2.cc