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/source.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/source.c')
-rw-r--r-- | gdb/source.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gdb/source.c b/gdb/source.c index 1b3690f..1539b6c 100644 --- a/gdb/source.c +++ b/gdb/source.c @@ -1574,12 +1574,12 @@ _initialize_source (void) just an approximation. */ re_set_syntax (RE_SYNTAX_GREP); - c = add_cmd ("directory", class_files, directory_command, - "Add directory DIR to beginning of search path for source files.\n\ + c = add_cmd ("directory", class_files, directory_command, _("\ +Add directory DIR to beginning of search path for source files.\n\ Forget cached info on source file locations and line positions.\n\ DIR can also be $cwd for the current working directory, or $cdir for the\n\ directory in which the source file was compiled into object code.\n\ -With no argument, reset the search path to $cdir:$cwd, the default.", +With no argument, reset the search path to $cdir:$cwd, the default."), &cmdlist); if (dbx_commands) @@ -1587,19 +1587,19 @@ With no argument, reset the search path to $cdir:$cwd, the default.", set_cmd_completer (c, filename_completer); - add_cmd ("directories", no_class, show_directories, - "Current search path for finding source files.\n\ + add_cmd ("directories", no_class, show_directories, _("\ +Current search path for finding source files.\n\ $cwd in the path means the current working directory.\n\ -$cdir in the path means the compilation directory of the source file.", +$cdir in the path means the compilation directory of the source file."), &showlist); if (xdb_commands) { add_com_alias ("D", "directory", class_files, 0); - add_cmd ("ld", no_class, show_directories, - "Current search path for finding source files.\n\ + add_cmd ("ld", no_class, show_directories, _("\ +Current search path for finding source files.\n\ $cwd in the path means the current working directory.\n\ -$cdir in the path means the compilation directory of the source file.", +$cdir in the path means the compilation directory of the source file."), &cmdlist); } |