summaryrefslogtreecommitdiff
path: root/gdb/infcall.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2005-02-14 16:18:43 +0000
committerAndrew Cagney <cagney@redhat.com>2005-02-14 16:18:43 +0000
commit040e11c34ea7f8c71fcfa0edfeff43b630a557eb (patch)
tree8f41bdadbaf63de069ff55aefa97d1f3f455e563 /gdb/infcall.c
parent359c9f376c6a65abe10d32c652f4cc1de51a6bef (diff)
downloadgdb-040e11c34ea7f8c71fcfa0edfeff43b630a557eb.tar.gz
2005-02-14 Andrew Cagney <cagney@gnu.org>
Mark up add_setshow functions, replace "PRINT:" comment prefix with "FIXME: i18n:". * aix-thread.c, alpha-tdep.c, arm-tdep.c, breakpoint.c: Update. * cris-tdep.c, dwarf2read.c, frame.c, hppa-tdep.c: Update. * infcall.c, m32r-rom.c, maint.c, mips-tdep.c: Update. * nto-tdep.c, observer.c, remote-rdi.c, remote.c: Update. * target.c, cli/cli-logging.c: Update.
Diffstat (limited to 'gdb/infcall.c')
-rw-r--r--gdb/infcall.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/gdb/infcall.c b/gdb/infcall.c
index 9246cc09228..b9bca75a77e 100644
--- a/gdb/infcall.c
+++ b/gdb/infcall.c
@@ -876,27 +876,27 @@ void
_initialize_infcall (void)
{
add_setshow_boolean_cmd ("coerce-float-to-double", class_obscure,
- &coerce_float_to_double_p, "\
-Set coercion of floats to doubles when calling functions.", "\
-Show coercion of floats to doubles when calling functions", "\
+ &coerce_float_to_double_p, _("\
+Set coercion of floats to doubles when calling functions."), _("\
+Show coercion of floats to doubles when calling functions"), _("\
Variables of type float should generally be converted to doubles before\n\
calling an unprototyped function, and left alone when calling a prototyped\n\
function. However, some older debug info formats do not provide enough\n\
information to determine that a function is prototyped. If this flag is\n\
set, GDB will perform the conversion for a function it considers\n\
unprototyped.\n\
-The default is to perform the conversion.\n",
- NULL, /* PRINT: Coercion of floats to doubles when calling functions is %s. */
+The default is to perform the conversion.\n"),
+ NULL, /* FIXME: i18n: Coercion of floats to doubles when calling functions is %s. */
NULL, NULL, &setlist, &showlist);
add_setshow_boolean_cmd ("unwindonsignal", no_class,
- &unwind_on_signal_p, "\
-Set unwinding of stack if a signal is received while in a call dummy.", "\
-Show unwinding of stack if a signal is received while in a call dummy.", "\
+ &unwind_on_signal_p, _("\
+Set unwinding of stack if a signal is received while in a call dummy."), _("\
+Show unwinding of stack if a signal is received while in a call dummy."), _("\
The unwindonsignal lets the user determine what gdb should do if a signal\n\
is received while in a function called from gdb (call dummy). If set, gdb\n\
unwinds the stack and restore the context to what as it was before the call.\n\
-The default is to stop in the frame where the signal was received.",
- NULL, /* PRINT: Unwinding of stack if a signal is received while in a call dummy is %s. */
+The default is to stop in the frame where the signal was received."),
+ NULL, /* FIXME: i18n: Unwinding of stack if a signal is received while in a call dummy is %s. */
NULL, NULL, &setlist, &showlist);
}