diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-02-12 00:39:24 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-02-12 00:39:24 +0000 |
commit | a3f171870f6bcdf091a0647c37e4e25c0020e4f4 (patch) | |
tree | 9a4149aa4f66939d74184a3853f77fdda5780215 /gdb/source.c | |
parent | 07450571864fbcc902268dac8cfb90cfa8533289 (diff) | |
download | gdb-a3f171870f6bcdf091a0647c37e4e25c0020e4f4.zip gdb-a3f171870f6bcdf091a0647c37e4e25c0020e4f4.tar.gz gdb-a3f171870f6bcdf091a0647c37e4e25c0020e4f4.tar.bz2 |
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up some of printf_filtered and printf_unfiltered.
* ada-lang.c, annotate.c, arch-utils.c, breakpoint.c: Update.
* corelow.c, cp-namespace.c, cp-support.c, dcache.c: Update.
* demangle.c, dsrec.c, dwarf2read.c, dwarfread.c: Update.
* event-loop.c, event-top.c, exec.c, f-valprint.c: Update.
* gdbtypes.c, inf-loop.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcmd.c, inflow.c, infrun.c, inftarg.c, language.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, maint.c: Update.
* mdebugread.c, memattr.c, monitor.c, objc-lang.c: Update.
* ocd.c, osabi.c, printcmd.c, procfs.c, regcache.c: Update.
* remote.c, solib-som.c, solib.c, somsolib.c, source.c: Update.
* stack.c, symfile.c, symmisc.c, target.c, thread.c: Update.
* top.c, utils.c, valprint.c, value.c, cli/cli-cmds.c: Update.
* cli/cli-dump.c, cli/cli-logging.c, tui/tui-hooks.c: Update.
* tui/tui-regs.c, tui/tui-win.c: Update.
Diffstat (limited to 'gdb/source.c')
-rw-r--r-- | gdb/source.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gdb/source.c b/gdb/source.c index 37d2b72..1b3690f 100644 --- a/gdb/source.c +++ b/gdb/source.c @@ -583,21 +583,21 @@ source_info (char *ignore, int from_tty) if (!s) { - printf_filtered ("No current source file.\n"); + printf_filtered (_("No current source file.\n")); return; } - printf_filtered ("Current source file is %s\n", s->filename); + printf_filtered (_("Current source file is %s\n"), s->filename); if (s->dirname) - printf_filtered ("Compilation directory is %s\n", s->dirname); + printf_filtered (_("Compilation directory is %s\n"), s->dirname); if (s->fullname) - printf_filtered ("Located in %s\n", s->fullname); + printf_filtered (_("Located in %s\n"), s->fullname); if (s->nlines) - printf_filtered ("Contains %d line%s.\n", s->nlines, + printf_filtered (_("Contains %d line%s.\n"), s->nlines, s->nlines == 1 ? "" : "s"); - printf_filtered ("Source language is %s.\n", language_str (s->language)); - printf_filtered ("Compiled with %s debugging format.\n", s->debugformat); - printf_filtered ("%s preprocessor macro info.\n", + printf_filtered (_("Source language is %s.\n"), language_str (s->language)); + printf_filtered (_("Compiled with %s debugging format.\n"), s->debugformat); + printf_filtered (_("%s preprocessor macro info.\n"), s->macro_table ? "Includes" : "Does not include"); } @@ -1317,7 +1317,7 @@ line_info (char *arg, int from_tty) if (sal.symtab == 0) { - printf_filtered ("No line number information available"); + printf_filtered (_("No line number information available")); if (sal.pc != 0) { /* This is useful for "info line *0x7f34". If we can't tell the @@ -1372,7 +1372,7 @@ line_info (char *arg, int from_tty) /* Is there any case in which we get here, and have an address which the user would want to see? If we have debugging symbols and no line numbers? */ - printf_filtered ("Line number %d is out of range for \"%s\".\n", + printf_filtered (_("Line number %d is out of range for \"%s\".\n"), sal.line, sal.symtab->filename); } xfree (sals.sals); @@ -1469,7 +1469,7 @@ forward_search_command (char *regex, int from_tty) line++; } - printf_filtered ("Expression not found\n"); + printf_filtered (_("Expression not found\n")); fclose (stream); } @@ -1556,7 +1556,7 @@ reverse_search_command (char *regex, int from_tty) } } - printf_filtered ("Expression not found\n"); + printf_filtered (_("Expression not found\n")); fclose (stream); return; } |