diff options
author | nijtmans <nijtmans> | 2010-06-16 10:40:20 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-06-16 10:40:20 (GMT) |
commit | 45f681e2ed1d035294167b07f216abb34e2a2928 (patch) | |
tree | 8d956ffffd9aeebd08928fa132be16d2f5858f6a /tools/loadICU.tcl | |
parent | 81c023bcb0900a37988a5deb611bc4f4aba68545 (diff) | |
download | tcl-45f681e2ed1d035294167b07f216abb34e2a2928.zip tcl-45f681e2ed1d035294167b07f216abb34e2a2928.tar.gz tcl-45f681e2ed1d035294167b07f216abb34e2a2928.tar.bz2 |
[Bug 3016135] traceback using clock format with locale of he_IL
Diffstat (limited to 'tools/loadICU.tcl')
-rwxr-xr-x | tools/loadICU.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/loadICU.tcl b/tools/loadICU.tcl index da0e134..55af781 100755 --- a/tools/loadICU.tcl +++ b/tools/loadICU.tcl @@ -26,7 +26,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: loadICU.tcl,v 1.3 2007/04/20 02:23:35 kennykb Exp $ +# RCS: @(#) $Id: loadICU.tcl,v 1.3.4.1 2010/06/16 10:40:20 nijtmans Exp $ # #---------------------------------------------------------------------- @@ -591,7 +591,7 @@ proc backslashify { string } { set retval {} foreach char [split $string {}] { scan $char %c ccode - if { $ccode >= 0x0020 && $ccode < 0x007f + if { $ccode >= 0x0020 && $ccode < 0x007f && $char ne "\"" && $char ne "\{" && $char ne "\}" && $char ne "\[" && $char ne "\]" && $char ne "\\" && $char ne "\$" } { append retval $char |