summaryrefslogtreecommitdiff
path: root/gdb/memattr.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2005-02-14 18:10:11 +0000
committerAndrew Cagney <cagney@redhat.com>2005-02-14 18:10:11 +0000
commit866f8556b8cc0ca257022955698f1aac62afa966 (patch)
treef4e885245a3e13497659b7b4cefccd78997f6549 /gdb/memattr.c
parent040e11c34ea7f8c71fcfa0edfeff43b630a557eb (diff)
downloadgdb-866f8556b8cc0ca257022955698f1aac62afa966.tar.gz
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/memattr.c')
-rw-r--r--gdb/memattr.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/gdb/memattr.c b/gdb/memattr.c
index 7f4f0740b3e..0edeb9704fe 100644
--- a/gdb/memattr.c
+++ b/gdb/memattr.c
@@ -526,23 +526,23 @@ where <mode> may be rw (read/write), ro (read-only) or wo (write-only), \n\
<width> may be 8, 16, 32, or 64, and \n\
<cache> may be cache or nocache");
- add_cmd ("mem", class_vars, mem_enable_command,
- "Enable memory region.\n\
+ add_cmd ("mem", class_vars, mem_enable_command, _("\
+Enable memory region.\n\
Arguments are the code numbers of the memory regions to enable.\n\
Usage: enable mem <code number>\n\
-Do \"info mem\" to see current list of code numbers.", &enablelist);
+Do \"info mem\" to see current list of code numbers."), &enablelist);
- add_cmd ("mem", class_vars, mem_disable_command,
- "Disable memory region.\n\
+ add_cmd ("mem", class_vars, mem_disable_command, _("\
+Disable memory region.\n\
Arguments are the code numbers of the memory regions to disable.\n\
Usage: disable mem <code number>\n\
-Do \"info mem\" to see current list of code numbers.", &disablelist);
+Do \"info mem\" to see current list of code numbers."), &disablelist);
- add_cmd ("mem", class_vars, mem_delete_command,
- "Delete memory region.\n\
+ add_cmd ("mem", class_vars, mem_delete_command, _("\
+Delete memory region.\n\
Arguments are the code numbers of the memory regions to delete.\n\
Usage: delete mem <code number>\n\
-Do \"info mem\" to see current list of code numbers.", &deletelist);
+Do \"info mem\" to see current list of code numbers."), &deletelist);
add_info ("mem", mem_info_command,
"Memory region attributes");