diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-07-28 17:26:27 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-07-28 17:26:27 +0000 |
commit | bbd943b1d5f59b80a874de2c818c7660d6782fe6 (patch) | |
tree | ff658eb3feaddcd218b4f15004dad67b5f579929 /gdb/breakpoint.c | |
parent | 97a93b166530bb65352fcd748d2e6cba613bbd79 (diff) | |
download | gdb-bbd943b1d5f59b80a874de2c818c7660d6782fe6.tar.gz |
2004-07-28 Andrew Cagney <cagney@gnu.org>
* cli/cli-decode.c (add_setshow_zinteger_cmd)
(add_setshow_cmd, add_setshow_auto_boolean_cmd)
(add_setshow_boolean_cmd, add_setshow_cmd_full): Add help_doc and
print parameters. Make string parameters constant.
* command.h: Update. Update copyright.
* remote.c (add_packet_config_cmd, _initialize_remote): Ditto.
* observer.c (_initialize_observer): Ditto.
* frame.c (_initialize_frame): Ditto.
* complaints.c (_initialize_complaints): Ditto.
* maint.c (_initialize_maint_cmds): Ditto.
* target.c (initialize_targets): Ditto.
* cli/cli-logging.c (_initialize_cli_logging): Ditto.
* infcall.c (_initialize_infcall): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* m32r-rom.c (_initialize_m32r_rom): Ditto.
* remote-rdi.c (_initialize_remote_rdi): Ditto.
* d10v-tdep.c (_initialize_d10v_tdep): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Ditto.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index eeb4544f11d..9858176707f 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -8086,16 +8086,13 @@ pending breakpoint behavior", 0/*allow-unknown*/, &showlist); add_setshow_auto_boolean_cmd ("pending", no_class, &pending_break_support, "\ -Set debugger's behavior regarding pending breakpoints.\n\ +Set debugger's behavior regarding pending breakpoints.", "\ +Show debugger's behavior regarding pending breakpoints.", "\ If on, an unrecognized breakpoint location will cause gdb to create a\n\ pending breakpoint. If off, an unrecognized breakpoint location results in\n\ an error. If auto, an unrecognized breakpoint location results in a\n\ -user-query to see if a pending breakpoint should be created.","\ -Show debugger's behavior regarding pending breakpoints.\n\ -If on, an unrecognized breakpoint location will cause gdb to create a\n\ -pending breakpoint. If off, an unrecognized breakpoint location results in\n\ -an error. If auto, an unrecognized breakpoint location results in a\n\ -user-query to see if a pending breakpoint should be created.", +user-query to see if a pending breakpoint should be created.", "\ +Debugger's behavior regarding pending breakpoints is %s.", NULL, NULL, &breakpoint_set_cmdlist, &breakpoint_show_cmdlist); |