diff options
author | dgp <dgp@users.sourceforge.net> | 2008-06-19 19:48:26 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-06-19 19:48:26 (GMT) |
commit | 6e922c5172262862308c81acded32fc06f05709d (patch) | |
tree | 5b63f94abe512f00ac199f4e46d21d6caecbef3e /library/tk.tcl | |
parent | d0dc88b51a52449287daaa05e732e49d8b466dc9 (diff) | |
download | tk-6e922c5172262862308c81acded32fc06f05709d.zip tk-6e922c5172262862308c81acded32fc06f05709d.tar.gz tk-6e922c5172262862308c81acded32fc06f05709d.tar.bz2 |
* generic/tk.h: TIP 285 additions make Tk 8.6 call the new
* library/tk.tcl: Tcl_Canceled() routine, available only in
Tcl 8.6, so bump our Tcl dependencies to version 8.6. Tk 8.6a1 will
no longer [load] into a Tcl 8.5 interp.
Diffstat (limited to 'library/tk.tcl')
-rw-r--r-- | library/tk.tcl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/library/tk.tcl b/library/tk.tcl index 935b555..7ecf22e 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.76 2008/06/19 19:37:59 dgp Exp $ +# RCS: @(#) $Id: tk.tcl,v 1.77 2008/06/19 19:48:26 dgp Exp $ # # Copyright (c) 1992-1994 The Regents of the University of California. # Copyright (c) 1994-1996 Sun Microsystems, Inc. @@ -12,10 +12,8 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. -package require Tcl 8.5 ;# Guard against [source] in an 8.4- interp - ;# before using 8.5 [package] features. # Insist on running with compatible version of Tcl -package require Tcl 8.5.0 +package require Tcl 8.6 # Verify that we have Tk binary and script components from the same release package require -exact Tk 8.6a1 |