diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-10 20:38:55 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-10 20:38:55 (GMT) |
commit | 5abed9b95ce3f5e789bc35d2dbbacecfad1dbd57 (patch) | |
tree | 6f8c577a9a695e267af00eb8f460b763cf1fe267 /library | |
parent | e40e34cb04d940b132e66ccd21b3018a68ffe3f7 (diff) | |
parent | 4d737ad3cb8cace53eb446a55b1674a967b6b164 (diff) | |
download | tcl-5abed9b95ce3f5e789bc35d2dbbacecfad1dbd57.zip tcl-5abed9b95ce3f5e789bc35d2dbbacecfad1dbd57.tar.gz tcl-5abed9b95ce3f5e789bc35d2dbbacecfad1dbd57.tar.bz2 |
[Bug 473946]: special characters not correctly sen
Diffstat (limited to 'library')
-rw-r--r-- | library/dde/pkgIndex.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/dde/pkgIndex.tcl b/library/dde/pkgIndex.tcl index e414051..db67e98 100644 --- a/library/dde/pkgIndex.tcl +++ b/library/dde/pkgIndex.tcl @@ -1,7 +1,7 @@ if {![package vsatisfies [package provide Tcl] 8]} return if {[string compare [info sharedlibextension] .dll]} return if {[info exists ::tcl_platform(debug)]} { - package ifneeded dde 1.2.4 [list load [file join $dir tcldde12g.dll] dde] + package ifneeded dde 1.2.5 [list load [file join $dir tcldde12g.dll] dde] } else { - package ifneeded dde 1.2.4 [list load [file join $dir tcldde12.dll] dde] + package ifneeded dde 1.2.5 [list load [file join $dir tcldde12.dll] dde] } |