From df983543b95c24a93c4a375668986ea33e85cac3 Mon Sep 17 00:00:00 2001 From: Michael Snyder Date: Mon, 28 Feb 2011 23:37:07 +0000 Subject: [PATCH] 2011-02-28 Michael Snyder * infcmd.c (_initialize_infcmd): Discard unused values. --- gdb/ChangeLog | 2 ++ gdb/infcmd.c | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d8f3b7eed7..1cb4478c75 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2011-02-28 Michael Snyder + * infcmd.c (_initialize_infcmd): Discard unused values. + * stabsread.c (rs6000_builtin_type): Missing break statement. * dbxread.c (process_one_symbol): Discard unused value. diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 2755fd0c4a..8a85915fb1 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -2907,7 +2907,7 @@ This command is a combination of tbreak and jump.")); if (xdb_commands) add_com_alias ("g", "go", class_run, 1); - c = add_com ("continue", class_run, continue_command, _("\ + add_com ("continue", class_run, continue_command, _("\ Continue program being debugged, after signal or breakpoint.\n\ If proceeding from breakpoint, a number N may be used as an argument,\n\ which means to set the ignore count of that breakpoint to N - 1 (so that\n\ @@ -2941,8 +2941,8 @@ You may specify arguments to give to your program, just as with the\n\ \"run\" command.")); set_cmd_completer (c, filename_completer); - c = add_com ("interrupt", class_run, interrupt_target_command, - _("Interrupt the execution of the debugged program.\n\ + add_com ("interrupt", class_run, interrupt_target_command, + _("Interrupt the execution of the debugged program.\n\ If non-stop mode is enabled, interrupt only the current thread,\n\ otherwise all the threads in the program are stopped. To \n\ interrupt all running threads in non-stop mode, use the -a option.")); -- 2.34.1