* 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.
This commit is contained in:
Fred Fish
1996-09-27 17:53:06 +00:00
parent 567417775d
commit 50140ab2a7
4 changed files with 48 additions and 20 deletions

View File

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