diff options
author | dgp <dgp@noemail.net> | 2007-05-18 18:39:28 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2007-05-18 18:39:28 (GMT) |
commit | 90bd5dc87b0d46e00c499bb322d0c258950260f5 (patch) | |
tree | 4e15601582fe82e692cfbe52544661ca2ea65098 /library | |
parent | baeda0140585114162ae86e80799c2e0528ffbc7 (diff) | |
download | tcl-90bd5dc87b0d46e00c499bb322d0c258950260f5.zip tcl-90bd5dc87b0d46e00c499bb322d0c258950260f5.tar.gz tcl-90bd5dc87b0d46e00c499bb322d0c258950260f5.tar.bz2 |
* unix/configure: autoconf-2.59 (FC6 fork)
* win/configure:
* README: Bump version number to 8.5a7
* generic/tcl.h:
* library/init.tcl:
* tools/tcl.wse.in:
* unix/configure.in:
* unix/tcl.spec:
* win/configure.in:
* generic/tclParse.c: Disable and remove the ALLOW_EXPAND sections
* tests/info.test: that continued to support the deprecated
* tests/mathop.test: {expand} syntax. Updated the few remaining
users of that syntax in the test suite.
FossilOrigin-Name: c798353dedec7e2d208285297483b60ee5a2127a
Diffstat (limited to 'library')
-rw-r--r-- | library/init.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/init.tcl b/library/init.tcl index 838aa7b..e1ff2a3 100644 --- a/library/init.tcl +++ b/library/init.tcl @@ -3,7 +3,7 @@ # Default system startup file for Tcl-based applications. Defines # "unknown" procedure and auto-load facilities. # -# RCS: @(#) $Id: init.tcl,v 1.90 2006/12/01 15:55:45 dgp Exp $ +# RCS: @(#) $Id: init.tcl,v 1.91 2007/05/18 18:39:30 dgp Exp $ # # Copyright (c) 1991-1993 The Regents of the University of California. # Copyright (c) 1994-1996 Sun Microsystems, Inc. @@ -17,7 +17,7 @@ if {[info commands package] == ""} { error "version mismatch: library\nscripts expect Tcl version 7.5b1 or later but the loaded version is\nonly [info patchlevel]" } -package require -exact Tcl 8.5a6 +package require -exact Tcl 8.5a7 # Compute the auto path to use in this interpreter. # The values on the path come from several locations: |