diff options
author | andreas_kupries <akupries@shaw.ca> | 2006-09-25 17:28:20 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2006-09-25 17:28:20 (GMT) |
commit | 9dfdfe057b35a6a13b2da62fb23c03bd87ab030f (patch) | |
tree | 9559a7b3b52052bd43516eb4b4585cc0640d6675 /library/tk.tcl | |
parent | 8a50ab5e2c3c18775c254efd2651bd27320b3dab (diff) | |
download | tk-9dfdfe057b35a6a13b2da62fb23c03bd87ab030f.zip tk-9dfdfe057b35a6a13b2da62fb23c03bd87ab030f.tar.gz tk-9dfdfe057b35a6a13b2da62fb23c03bd87ab030f.tar.bz2 |
* generic/tkConsole.c: Complete reversal of the changes of Sep 22.
* generic/tkMain.c: For compat reason the Tcl core will not change
* generic/tkWindow.c: the registered version to include the patchlevel,
* library/tk.tcl: making the changes to Tk unnecessary.
* unix/configure:
* unix/Makefile.in:
* unix/tcl.m4:
* win/configure:
* win/Makefile.in:
* win/makefile.vc:
* win/rules.vc:
* win/tcl.m4:
Diffstat (limited to 'library/tk.tcl')
-rw-r--r-- | library/tk.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/tk.tcl b/library/tk.tcl index 74544b7..2abd90f 100644 --- a/library/tk.tcl +++ b/library/tk.tcl @@ -3,7 +3,7 @@ # Initialization script normally executed in the interpreter for each # Tk-based application. Arranges class bindings for widgets. # -# RCS: @(#) $Id: tk.tcl,v 1.46.2.5 2006/09/22 19:01:51 andreas_kupries Exp $ +# RCS: @(#) $Id: tk.tcl,v 1.46.2.6 2006/09/25 17:28:20 andreas_kupries Exp $ # # Copyright (c) 1992-1994 The Regents of the University of California. # Copyright (c) 1994-1996 Sun Microsystems, Inc. @@ -13,8 +13,8 @@ # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # Insist on running with compatible versions of Tcl and Tk. -package require -exact Tk 8.4.14 -package require -exact Tcl 8.4.14 +package require -exact Tk 8.4 +package require -exact Tcl 8.4 # Create a ::tk namespace namespace eval ::tk { |