FYI: fix help for catch catch and catch throw

Tom Tromey tromey@redhat.com
Wed Jan 11 20:51:00 GMT 2012


I'm checking this in.

The help for "catch catch" and "catch throw" claims that they take an
exception name as an argument.  They do not -- this was never
implemented and most of the other references to it were removed some
time ago.

Built on x86-64 F15.

Tom

ChangeLog:
2012-01-11  Tom Tromey  <tromey@redhat.com>

	PR gdb/9598:
	* breakpoint.c (_initialize_breakpoint): Fix help for "catch
	catch" and "catch throw".

Index: breakpoint.c
===================================================================
RCS file: /cvs/src/src/gdb/breakpoint.c,v
retrieving revision 1.639
diff -u -r1.639 breakpoint.c
--- breakpoint.c	9 Jan 2012 20:47:47 -0000	1.639
+++ breakpoint.c	11 Jan 2012 18:28:49 -0000
@@ -13849,15 +13849,13 @@
 
   /* Add catch and tcatch sub-commands.  */
   add_catch_command ("catch", _("\
-Catch an exception, when caught.\n\
-With an argument, catch only exceptions with the given name."),
+Catch an exception, when caught."),
 		     catch_catch_command,
                      NULL,
 		     CATCH_PERMANENT,
 		     CATCH_TEMPORARY);
   add_catch_command ("throw", _("\
-Catch an exception, when thrown.\n\
-With an argument, catch only exceptions with the given name."),
+Catch an exception, when thrown."),
 		     catch_throw_command,
                      NULL,
 		     CATCH_PERMANENT,



More information about the Gdb-patches mailing list