summaryrefslogtreecommitdiff
path: root/gdb/frame.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
commit7915a72c7f0c255cfcf47c1b186d3739aeafe4da (patch)
treef23858f72a74163f4ec1e652994bb47495f6090f /gdb/frame.c
parent5cba516c96c30419af2254897f0459ef4d640084 (diff)
downloadbinutils-gdb-7915a72c7f0c255cfcf47c1b186d3739aeafe4da.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/frame.c')
-rw-r--r--gdb/frame.c32
1 files changed, 17 insertions, 15 deletions
diff --git a/gdb/frame.c b/gdb/frame.c
index c1988b80c09..eb1fbdb4e25 100644
--- a/gdb/frame.c
+++ b/gdb/frame.c
@@ -1550,34 +1550,36 @@ Show backtrace variables such as the backtrace limit",
0/*allow-unknown*/, &showlist);
add_setshow_boolean_cmd ("past-main", class_obscure,
- &backtrace_past_main, "\
-Set whether backtraces should continue past \"main\".", "\
-Show whether backtraces should continue past \"main\".", "\
+ &backtrace_past_main, _("\
+Set whether backtraces should continue past \"main\"."), _("\
+Show whether backtraces should continue past \"main\"."), _("\
Normally the caller of \"main\" is not of interest, so GDB will terminate\n\
the backtrace at \"main\". Set this variable if you need to see the rest\n\
-of the stack trace.",
- NULL, /* PRINT: Whether backtraces should continue past \"main\" is %s. */
+of the stack trace."),
+ NULL, /* FIXME: i18n: Whether backtraces should continue past \"main\" is %s. */
NULL, NULL, &set_backtrace_cmdlist,
&show_backtrace_cmdlist);
add_setshow_boolean_cmd ("past-entry", class_obscure,
- &backtrace_past_entry, "\
-Set whether backtraces should continue past the entry point of a program.", "\
-Show whether backtraces should continue past the entry point of a program.", "\
+ &backtrace_past_entry, _("\
+Set whether backtraces should continue past the entry point of a program."),
+ _("\
+Show whether backtraces should continue past the entry point of a program."),
+ _("\
Normally there are no callers beyond the entry point of a program, so GDB\n\
will terminate the backtrace there. Set this variable if you need to see \n\
-the rest of the stack trace.",
- NULL, /* PRINT: Whether backtraces should continue past the entry point is %s. */
+the rest of the stack trace."),
+ NULL, /* FIXME: i18n: Whether backtraces should continue past the entry point is %s. */
NULL, NULL, &set_backtrace_cmdlist,
&show_backtrace_cmdlist);
add_setshow_uinteger_cmd ("limit", class_obscure,
- &backtrace_limit, "\
-Set an upper bound on the number of backtrace levels.", "\
-Show the upper bound on the number of backtrace levels.", "\
+ &backtrace_limit, _("\
+Set an upper bound on the number of backtrace levels."), _("\
+Show the upper bound on the number of backtrace levels."), _("\
No more than the specified number of frames can be displayed or examined.\n\
-Zero is unlimited.",
- NULL, /* PRINT: An upper bound on the number of backtrace levels is %s. */
+Zero is unlimited."),
+ NULL, /* FIXME: i18n: An upper bound on the number of backtrace levels is %s. */
NULL, NULL, &set_backtrace_cmdlist,
&show_backtrace_cmdlist);