aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbtk.tcl
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>1996-09-27 17:53:06 +0000
committerFred Fish <fnf@specifix.com>1996-09-27 17:53:06 +0000
commit50140ab2a774b72c6262e2bebc97bc33f14909e3 (patch)
treef84631266dfe3a598ec31bf85477b40a56f08c98 /gdb/gdbtk.tcl
parent567417775d8694538d59374074de3f8751295df8 (diff)
downloadgdb-50140ab2a774b72c6262e2bebc97bc33f14909e3.zip
gdb-50140ab2a774b72c6262e2bebc97bc33f14909e3.tar.gz
gdb-50140ab2a774b72c6262e2bebc97bc33f14909e3.tar.bz2
* top.c (print_gdb_version): Rewrote to comply with new GNU coding
standards for the --version option. (print_gnu_advertisement): Remove, now part of print_gdb_version. (show_version): Remove call to print_gnu_advertisement. * top.h (print_gnu_advertisement): Remove prototype. * main.c (print_gdb_help): Move help to static function and add prototype. (main): Call print_gdb_help rather than inlining it. (main): Remove call to print_gnu_advertisement. * gdbtk.tcl (create_copyright_window): Increase timeout from 15 seconds to 30 seconds.
Diffstat (limited to 'gdb/gdbtk.tcl')
-rw-r--r--gdb/gdbtk.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/gdbtk.tcl b/gdb/gdbtk.tcl
index bd08669..598e59c 100644
--- a/gdb/gdbtk.tcl
+++ b/gdb/gdbtk.tcl
@@ -3352,8 +3352,8 @@ proc create_copyright_window {} {
bind .c.m <1> {destroy .c}
bind .c <Leave> {destroy .c}
- # "suitable period" currently means "15 seconds".
- after 15000 {
+ # "suitable period" currently means "30 seconds".
+ after 30000 {
if {[winfo exists .c]} then {
destroy .c
}