diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-10 20:44:18 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-10 20:44:18 (GMT) |
commit | c59ff56f362269505027230eb5b8a1a4f9cf71e0 (patch) | |
tree | 410552d3e22655c1a4180e2e37c21c03dd3353a6 /library/dde | |
parent | baa0c31a5d5e9a9fb068cb419253fbe7378987e7 (diff) | |
parent | d5e5d7b16d3ec4b3e346f162d1334b6187385031 (diff) | |
download | tcl-c59ff56f362269505027230eb5b8a1a4f9cf71e0.zip tcl-c59ff56f362269505027230eb5b8a1a4f9cf71e0.tar.gz tcl-c59ff56f362269505027230eb5b8a1a4f9cf71e0.tar.bz2 |
[Bug 473946]: special characters not correctly sent
Diffstat (limited to 'library/dde')
-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 ce31825..96d5855 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.3.2 [list load [file join $dir tcldde13g.dll] dde] + package ifneeded dde 1.3.3 [list load [file join $dir tcldde13g.dll] dde] } else { - package ifneeded dde 1.3.2 [list load [file join $dir tcldde13.dll] dde] + package ifneeded dde 1.3.3 [list load [file join $dir tcldde13.dll] dde] } |