diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-10-24 21:22:18 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-10-24 21:22:18 (GMT) |
commit | c69ccc749e9de9c32a0e0c7b6f733b8e64e1209f (patch) | |
tree | 779dbba13e49b08c336fac41b69c470e523fd878 /library/reg | |
parent | 983b95bdbd0cb4e1e9a58f482ab46ad7d5617abe (diff) | |
download | tcl-c69ccc749e9de9c32a0e0c7b6f733b8e64e1209f.zip tcl-c69ccc749e9de9c32a0e0c7b6f733b8e64e1209f.tar.gz tcl-c69ccc749e9de9c32a0e0c7b6f733b8e64e1209f.tar.bz2 |
Backport "registry" version 1.3.3, so all active branches now have the same registry version.
(this commit must -eventually- be merge-marked to core-8-6-branch, since everything is there already)
Diffstat (limited to 'library/reg')
-rwxr-xr-x | library/reg/pkgIndex.tcl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/reg/pkgIndex.tcl b/library/reg/pkgIndex.tcl index 1241f2a..12c7ea5 100755 --- a/library/reg/pkgIndex.tcl +++ b/library/reg/pkgIndex.tcl @@ -1,9 +1,9 @@ if {![package vsatisfies [package provide Tcl] 8]} return if {[info sharedlibextension] != ".dll"} return if {[info exists ::tcl_platform(debug)]} { - package ifneeded registry 1.2.2 \ - [list load [file join $dir tclreg12g.dll] registry] + package ifneeded registry 1.3.3 \ + [list load [file join $dir tclreg13g.dll] registry] } else { - package ifneeded registry 1.2.2 \ - [list load [file join $dir tclreg12.dll] registry] + package ifneeded registry 1.3.3 \ + [list load [file join $dir tclreg13.dll] registry] } |