diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index f613267f9326776ed775ebc7c1c6863dc2b529d7..c0112cff633d0496023db396b8b5c4cc2707988a 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,7 @@
+2002-12-26  Phil Edwards  <pme@gcc.gnu.org>
+
+	* libsupc++/exception:  Add comment (mistakenly skipped).
+
 2002-12-26  Phil Edwards  <pme@gcc.gnu.org>
 
 	* include/std/std_bitset.h (_Base_bitset::_M_do_left_shift,
diff --git a/libstdc++-v3/libsupc++/exception b/libstdc++-v3/libsupc++/exception
index d76a947f7c92bca19c725a276fcff3fb9883b1ac..20dc05b53ecc6f642b182e686efac3b1feb7aa33 100644
--- a/libstdc++-v3/libsupc++/exception
+++ b/libstdc++-v3/libsupc++/exception
@@ -78,7 +78,7 @@ namespace std
   /// Takes a new handler function as an argument, returns the old function.
   terminate_handler set_terminate(terminate_handler) throw();
   /** The runtime will call this function if %exception handling must be
-   *  abandoned for any reason.  */
+   *  abandoned for any reason.  It can also be called by the user.  */
   void terminate() __attribute__ ((__noreturn__));
 
   /// Takes a new handler function as an argument, returns the old function.
@@ -109,6 +109,8 @@ namespace __gnu_cxx
       @endcode
       to use.  For more info, see
       http://gcc.gnu.org/onlinedocs/libstdc++/19_diagnostics/howto.html#4
+
+      In 3.4 and later, this is on by default.
   */
   void __verbose_terminate_handler ();
 } // namespace __gnu_cxx