diff options
author | dgp <dgp@noemail.net> | 2006-04-05 16:21:55 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2006-04-05 16:21:55 (GMT) |
commit | b35445704d4128ca757d9c764291743f14184a57 (patch) | |
tree | 2b854a86ba8eff38de01b6af90b6d4bbb909159d /library | |
parent | 332250a1676dc5c76baa5a97494b53f82d6a140d (diff) | |
download | tcl-b35445704d4128ca757d9c764291743f14184a57.zip tcl-b35445704d4128ca757d9c764291743f14184a57.tar.gz tcl-b35445704d4128ca757d9c764291743f14184a57.tar.bz2 |
* library/reg/pkgIndex.tcl: Long overlooked bump to registry package * win/tclWinReg.c: version 1.1.4 (should have been done
for the Tcl 8.4.8 release!)
FossilOrigin-Name: 469591bcaf35f2b224977d98e46b36d25eeeeef0
Diffstat (limited to 'library')
-rwxr-xr-x | library/reg/pkgIndex.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/reg/pkgIndex.tcl b/library/reg/pkgIndex.tcl index 55775f2..61c1d94 100755 --- a/library/reg/pkgIndex.tcl +++ b/library/reg/pkgIndex.tcl @@ -1,9 +1,9 @@ if {![package vsatisfies [package provide Tcl] 8]} {return} if {[string compare $::tcl_platform(platform) windows]} {return} if {[info exists ::tcl_platform(debug)]} { - package ifneeded registry 1.1.3 \ + package ifneeded registry 1.1.4 \ [list load [file join $dir tclreg11g.dll] registry] } else { - package ifneeded registry 1.1.3 \ + package ifneeded registry 1.1.4 \ [list load [file join $dir tclreg11.dll] registry] } |