summaryrefslogtreecommitdiff
path: root/gdb/memattr.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2005-02-15 15:49:28 +0000
committerAndrew Cagney <cagney@redhat.com>2005-02-15 15:49:28 +0000
commit72872563bd4c90cab88d266ae303491f01dd32bc (patch)
treed927324e8cdc8c0d98035e32521491744b3ea601 /gdb/memattr.c
parent8548f0a71c24b5d87a8122ba067bb7b996523fdc (diff)
downloadgdb-72872563bd4c90cab88d266ae303491f01dd32bc.tar.gz
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/memattr.c')
-rw-r--r--gdb/memattr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/memattr.c b/gdb/memattr.c
index 0edeb9704fe..4365e62d2b5 100644
--- a/gdb/memattr.c
+++ b/gdb/memattr.c
@@ -519,12 +519,12 @@ extern initialize_file_ftype _initialize_mem; /* -Wmissing-prototype */
void
_initialize_mem (void)
{
- add_com ("mem", class_vars, mem_command,
- "Define attributes for memory region.\n\
+ add_com ("mem", class_vars, mem_command, _("\
+Define attributes for memory region.\n\
Usage: mem <lo addr> <hi addr> [<mode> <width> <cache>], \n\
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");
+ <cache> may be cache or nocache"));
add_cmd ("mem", class_vars, mem_enable_command, _("\
Enable memory region.\n\
@@ -545,5 +545,5 @@ Usage: delete mem <code number>\n\
Do \"info mem\" to see current list of code numbers."), &deletelist);
add_info ("mem", mem_info_command,
- "Memory region attributes");
+ _("Memory region attributes"));
}