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.
This commit is contained in:
Andrew Cagney
2005-02-14 16:18:43 +00:00
parent 5cba516c96
commit 7915a72c7f
19 changed files with 193 additions and 182 deletions

View File

@@ -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);
}