summaryrefslogtreecommitdiffstats
path: root/library/reg
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2010-04-02 19:27:44 (GMT)
committerKevin B Kenny <kennykb@acm.org>2010-04-02 19:27:44 (GMT)
commit859e9838d18c82b7c6fbcc1c9af736f6be73aecb (patch)
treee967dcedf70a1e2fa6a28855348039731bd16cd3 /library/reg
parenteea8077922683bcbf1bfa11eaf8f26e5c95c0b49 (diff)
downloadtcl-859e9838d18c82b7c6fbcc1c9af736f6be73aecb.zip
tcl-859e9838d18c82b7c6fbcc1c9af736f6be73aecb.tar.gz
tcl-859e9838d18c82b7c6fbcc1c9af736f6be73aecb.tar.bz2
* library/reg/pkgIndex.tcl: [TIP #362]: Fixed first round of
* tests/registry.test: bugs resulting from the recent commits * win/tclWinReg.c: of changes in support of the referenced TIP.
Diffstat (limited to 'library/reg')
-rwxr-xr-xlibrary/reg/pkgIndex.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/reg/pkgIndex.tcl b/library/reg/pkgIndex.tcl
index c24e700..f07dee4 100755
--- a/library/reg/pkgIndex.tcl
+++ b/library/reg/pkgIndex.tcl
@@ -2,8 +2,8 @@ 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.3 \
- [list load [file join $dir tclreg12g.dll] registry]
+ [list load [file join $dir tclreg13g.dll] registry]
} else {
package ifneeded registry 1.3 \
- [list load [file join $dir tclreg12.dll] registry]
+ [list load [file join $dir tclreg13.dll] registry]
}