diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-02-15 15:49:28 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-02-15 15:49:28 +0000 |
commit | 1bedd215175652ad3e82d2fb731f1d62dd44acf8 (patch) | |
tree | 09ea0800a74e846c01f195cc7de13c5df107c697 /gdb/symtab.c | |
parent | 724f452bdd25d4fd3eb3e361043276dcbde6d85c (diff) | |
download | gdb-1bedd215175652ad3e82d2fb731f1d62dd44acf8.zip gdb-1bedd215175652ad3e82d2fb731f1d62dd44acf8.tar.gz gdb-1bedd215175652ad3e82d2fb731f1d62dd44acf8.tar.bz2 |
2005-02-15 Andrew Cagney <cagney@gnu.org>
Mark up add_com, add_info and add_prefix_cmd.
* breakpoint.c, cp-support.c, dcache.c, dwarf2read.c: Update.
* exec.c, f-valprint.c, frame.c, gcore.c, gnu-nat.c: Update.
* go32-nat.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* kod.c, language.c, linux-nat.c, m32r-rom.c, macrocmd.c: Update.
* maint.c, memattr.c, mips-tdep.c, nto-procfs.c, objc-lang.c: Update.
* ocd.c, pa64solib.c, printcmd.c, procfs.c, regcache.c: Update.
* remote-e7000.c, remote-m32r-sdi.c, remote-mips.c: Update.
* remote-sds.c, remote-sim.c, remote-st.c, remote-utils.c: Update.
* remote.c, rs6000-tdep.c, ser-go32.c, serial.c: Update.
* sh-tdep.c, solib.c, somsolib.c, source.c, stack.c: Update.
* symfile.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, typeprint.c, utils.c, valprint.c: Update.
* win32-nat.c, xcoffsolib.c, cli/cli-cmds.c, cli/cli-dump.c: Update.
* cli/cli-logging.c, tui/tui-layout.c, tui/tui-regs.c: Update.
* tui/tui-stack.c, tui/tui-win.c: Update.
Diffstat (limited to 'gdb/symtab.c')
-rw-r--r-- | gdb/symtab.c | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/gdb/symtab.c b/gdb/symtab.c index c19a519..e2f457a 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -4105,14 +4105,14 @@ main_name (void) void _initialize_symtab (void) { - add_info ("variables", variables_info, - "All global and static variable names, or those matching REGEXP."); + add_info ("variables", variables_info, _("\ +All global and static variable names, or those matching REGEXP.")); if (dbx_commands) - add_com ("whereis", class_info, variables_info, - "All global and static variable names, or those matching REGEXP."); + add_com ("whereis", class_info, variables_info, _("\ +All global and static variable names, or those matching REGEXP.")); add_info ("functions", functions_info, - "All function names, or those matching REGEXP."); + _("All function names, or those matching REGEXP.")); /* FIXME: This command has at least the following problems: @@ -4124,19 +4124,20 @@ _initialize_symtab (void) I also think "ptype" or "whatis" is more likely to be useful (but if there is much disagreement "info types" can be fixed). */ add_info ("types", types_info, - "All type names, or those matching REGEXP."); + _("All type names, or those matching REGEXP.")); add_info ("sources", sources_info, - "Source files in the program."); + _("Source files in the program.")); add_com ("rbreak", class_breakpoint, rbreak_command, - "Set a breakpoint for all functions matching REGEXP."); + _("Set a breakpoint for all functions matching REGEXP.")); if (xdb_commands) { - add_com ("lf", class_info, sources_info, "Source files in the program"); - add_com ("lg", class_info, variables_info, - "All global and static variable names, or those matching REGEXP."); + add_com ("lf", class_info, sources_info, + _("Source files in the program")); + add_com ("lg", class_info, variables_info, _("\ +All global and static variable names, or those matching REGEXP.")); } /* Initialize the one built-in type that isn't language dependent... */ |