diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-02-14 18:10:11 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-02-14 18:10:11 +0000 |
commit | 1a966eabdfe5d28f2e17f73988c9124cc5b76f31 (patch) | |
tree | 326d0cfbf97d88b2b9a3c31ab76328966afbef03 /gdb/go32-nat.c | |
parent | 7915a72c7f0c255cfcf47c1b186d3739aeafe4da (diff) | |
download | gdb-1a966eabdfe5d28f2e17f73988c9124cc5b76f31.zip gdb-1a966eabdfe5d28f2e17f73988c9124cc5b76f31.tar.gz gdb-1a966eabdfe5d28f2e17f73988c9124cc5b76f31.tar.bz2 |
2005-02-14 Andrew Cagney <cagney@gnu.org>
Mark up add_cmd.
* arch-utils.c, avr-tdep.c, breakpoint.c, corefile.c: Update.
* cp-abi.c, cp-namespace.c, cp-support.c, dummy-frame.c: Update.
* exec.c, gnu-nat.c, go32-nat.c, hppa-tdep.c, infcmd.c: Update.
* infrun.c, interps.c, macrocmd.c, maint.c, memattr.c: Update.
* mips-tdep.c, ocd.c, osabi.c, printcmd.c, regcache.c: Update.
* reggroups.c, remote-fileio.c, remote-rdi.c, remote.c: Update.
* sol-thread.c, source.c, stack.c, symfile-mem.c: Update.
* symfile.c, thread.c, tracepoint.c, valprint.c, value.c: Update.
* win32-nat.c, cli/cli-cmds.c, cli/cli-dump.c: Update.
* cli/cli-logging.c, tui/tui-regs.c: Update.
Diffstat (limited to 'gdb/go32-nat.c')
-rw-r--r-- | gdb/go32-nat.c | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c index 16e42a5..f49b0de 100644 --- a/gdb/go32-nat.c +++ b/gdb/go32-nat.c @@ -1910,39 +1910,39 @@ _initialize_go32_nat (void) "Print information specific to DJGPP (aka MS-DOS) debugging.", &info_dos_cmdlist, "info dos ", 0, &infolist); - add_cmd ("sysinfo", class_info, go32_sysinfo, - "Display information about the target system, including CPU, OS, DPMI, etc.", + add_cmd ("sysinfo", class_info, go32_sysinfo, _("\ +Display information about the target system, including CPU, OS, DPMI, etc."), &info_dos_cmdlist); - add_cmd ("ldt", class_info, go32_sldt, - "Display entries in the LDT (Local Descriptor Table).\n" - "Entry number (an expression) as an argument means display only that entry.", + add_cmd ("ldt", class_info, go32_sldt, _("\ +Display entries in the LDT (Local Descriptor Table).\n\ +Entry number (an expression) as an argument means display only that entry."), &info_dos_cmdlist); - add_cmd ("gdt", class_info, go32_sgdt, - "Display entries in the GDT (Global Descriptor Table).\n" - "Entry number (an expression) as an argument means display only that entry.", + add_cmd ("gdt", class_info, go32_sgdt, _("\ +Display entries in the GDT (Global Descriptor Table).\n\ +Entry number (an expression) as an argument means display only that entry."), &info_dos_cmdlist); - add_cmd ("idt", class_info, go32_sidt, - "Display entries in the IDT (Interrupt Descriptor Table).\n" - "Entry number (an expression) as an argument means display only that entry.", + add_cmd ("idt", class_info, go32_sidt, _("\ +Display entries in the IDT (Interrupt Descriptor Table).\n\ +Entry number (an expression) as an argument means display only that entry."), &info_dos_cmdlist); - add_cmd ("pde", class_info, go32_pde, - "Display entries in the Page Directory.\n" - "Entry number (an expression) as an argument means display only that entry.", + add_cmd ("pde", class_info, go32_pde, _("\ +Display entries in the Page Directory.\n\ +Entry number (an expression) as an argument means display only that entry."), &info_dos_cmdlist); - add_cmd ("pte", class_info, go32_pte, - "Display entries in Page Tables.\n" - "Entry number (an expression) as an argument means display only entries\n" - "from the Page Table pointed to by the specified Page Directory entry.", + add_cmd ("pte", class_info, go32_pte, _("\ +Display entries in Page Tables.\n\ +Entry number (an expression) as an argument means display only entries\n\ +from the Page Table pointed to by the specified Page Directory entry."), &info_dos_cmdlist); - add_cmd ("address-pte", class_info, go32_pte_for_address, - "Display a Page Table entry for a linear address.\n" - "The address argument must be a linear address, after adding to\n" - "it the base address of the appropriate segment.\n" - "The base address of variables and functions in the debuggee's data\n" - "or code segment is stored in the variable __djgpp_base_address,\n" - "so use `__djgpp_base_address + (char *)&var' as the argument.\n" - "For other segments, look up their base address in the output of\n" - "the `info dos ldt' command.", + add_cmd ("address-pte", class_info, go32_pte_for_address, _("\ +Display a Page Table entry for a linear address.\n\ +The address argument must be a linear address, after adding to\n\ +it the base address of the appropriate segment.\n\ +The base address of variables and functions in the debuggee's data\n\ +or code segment is stored in the variable __djgpp_base_address,\n\ +so use `__djgpp_base_address + (char *)&var' as the argument.\n\ +For other segments, look up their base address in the output of\n\ +the `info dos ldt' command."), &info_dos_cmdlist); } |