From dbe7319c7cad35fb5c5a012e056d67224cb09b02 Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Sat, 12 Feb 2005 00:39:24 +0000 Subject: 2005-02-11 Andrew Cagney 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. --- gdb/valprint.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'gdb/valprint.c') diff --git a/gdb/valprint.c b/gdb/valprint.c index 9b51cc17a51..e2928972cdc 100644 --- a/gdb/valprint.c +++ b/gdb/valprint.c @@ -161,12 +161,12 @@ value_print (struct value *val, struct ui_file *stream, int format, { if (val == 0) { - printf_filtered ("
"); + printf_filtered (_("
")); return 0; } if (value_optimized_out (val)) { - printf_filtered (""); + printf_filtered (_("")); return 0; } return LA_VALUE_PRINT (val, stream, format, pretty); @@ -1086,7 +1086,7 @@ set_input_radix_1 (int from_tty, unsigned radix) input_radix = radix; if (from_tty) { - printf_filtered ("Input radix now set to decimal %u, hex %x, octal %o.\n", + printf_filtered (_("Input radix now set to decimal %u, hex %x, octal %o.\n"), radix, radix, radix); } } @@ -1122,7 +1122,7 @@ set_output_radix_1 (int from_tty, unsigned radix) output_radix = radix; if (from_tty) { - printf_filtered ("Output radix now set to decimal %u, hex %x, octal %o.\n", + printf_filtered (_("Output radix now set to decimal %u, hex %x, octal %o.\n"), radix, radix, radix); } } @@ -1145,7 +1145,7 @@ set_radix (char *arg, int from_tty) set_input_radix_1 (0, radix); if (from_tty) { - printf_filtered ("Input and output radices now set to decimal %u, hex %x, octal %o.\n", + printf_filtered (_("Input and output radices now set to decimal %u, hex %x, octal %o.\n"), radix, radix, radix); } } @@ -1159,14 +1159,14 @@ show_radix (char *arg, int from_tty) { if (input_radix == output_radix) { - printf_filtered ("Input and output radices set to decimal %u, hex %x, octal %o.\n", + printf_filtered (_("Input and output radices set to decimal %u, hex %x, octal %o.\n"), input_radix, input_radix, input_radix); } else { - printf_filtered ("Input radix set to decimal %u, hex %x, octal %o.\n", + printf_filtered (_("Input radix set to decimal %u, hex %x, octal %o.\n"), input_radix, input_radix, input_radix); - printf_filtered ("Output radix set to decimal %u, hex %x, octal %o.\n", + printf_filtered (_("Output radix set to decimal %u, hex %x, octal %o.\n"), output_radix, output_radix, output_radix); } } -- cgit v1.2.1