From: Doug Evans Date: Wed, 7 Jan 2009 20:38:16 +0000 (+0000) Subject: * cli/cli-cmds.c (set_debug): Fix cut-n-paste error. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0380c18b13823a0f2cbd9a5601e041faf066c2ac;p=binutils-gdb.git * cli/cli-cmds.c (set_debug): Fix cut-n-paste error. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8daaae923cf..472573838ac 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2009-01-07 Doug Evans + + * cli/cli-cmds.c (set_debug): Fix cut-n-paste error. + 2009-01-07 Jan Kratochvil * f-typeprint.c (f_type_print_base ): Fix output diff --git a/gdb/cli/cli-cmds.c b/gdb/cli/cli-cmds.c index b391e303ca9..d3694e43481 100644 --- a/gdb/cli/cli-cmds.c +++ b/gdb/cli/cli-cmds.c @@ -1111,7 +1111,7 @@ ambiguous_line_spec (struct symtabs_and_lines *sals) static void set_debug (char *arg, int from_tty) { - printf_unfiltered (_("\"set debug\" must be followed by the name of a print subcommand.\n")); + printf_unfiltered (_("\"set debug\" must be followed by the name of a debug subcommand.\n")); help_list (setdebuglist, "set debug ", -1, gdb_stdout); }