diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-02-14 16:18:43 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-02-14 16:18:43 +0000 |
commit | 7915a72c7f0c255cfcf47c1b186d3739aeafe4da (patch) | |
tree | f23858f72a74163f4ec1e652994bb47495f6090f /gdb/infcall.c | |
parent | 5cba516c96c30419af2254897f0459ef4d640084 (diff) | |
download | gdb-7915a72c7f0c255cfcf47c1b186d3739aeafe4da.zip gdb-7915a72c7f0c255cfcf47c1b186d3739aeafe4da.tar.gz gdb-7915a72c7f0c255cfcf47c1b186d3739aeafe4da.tar.bz2 |
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.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gdb/infcall.c b/gdb/infcall.c index 9246cc0..b9bca75 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); } |