This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

FYI: fix NEWS snafu


During my recent commits I partially forgot that the patches would apply
the NEWS changes to the wrong part of the file.  The new entries mostly
ended up in the "7.6" section.

This patch fixes the problem by moving the entries to the "since 7.6"
section.

Committing as obvious.

Tom

2013-04-15  Tom Tromey  <tromey@redhat.com>

	* NEWS: Move recent entries into "since 7.6" section.

Index: NEWS
===================================================================
RCS file: /cvs/src/src/gdb/NEWS,v
retrieving revision 1.591
diff -u -r1.591 NEWS
--- NEWS	15 Apr 2013 18:13:00 -0000	1.591
+++ NEWS	15 Apr 2013 18:23:22 -0000
@@ -4,6 +4,9 @@
 *** Changes since GDB 7.6
 
 * New commands:
+catch rethrow
+  Like "catch throw", but catches a re-thrown exception.
+
 show configuration
   Display the details of GDB configure-time options.
 
@@ -31,6 +34,12 @@
 
 * GDB now implements the the C++ 'typeid' operator.
 
+* The new convenience variable $_exception holds the exception being
+  thrown or caught at an exception-related catchpoint.
+
+* The exception-related catchpoints, like "catch throw", now accept a
+  regular expression which can be used to filter exceptions by type.
+
 * MI changes
 
   ** The -trace-save MI command can optionally save trace buffer in Common
@@ -105,12 +114,6 @@
 
 * 'info proc' now works on some core files.
 
-* The new convenience variable $_exception holds the exception being
-  thrown or caught at an exception-related catchpoint.
-
-* The exception-related catchpoints, like "catch throw", now accept a
-  regular expression which can be used to filter exceptions by type.
-
 * Python scripting
 
   ** Vectors can be created with gdb.Type.vector.
@@ -159,9 +162,6 @@
 
 * New commands (for set/show, see "New options" below)
 
-catch rethrow
-  Like "catch throw", but catches a re-thrown exception.
-
 catch signal 
   Catch signals.  This is similar to "handle", but allows commands and
   conditions to be attached.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]