diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-06 20:40:57 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-06 20:40:57 (GMT) |
commit | b2dabdc1ebc905c6eb5c4f0a7511239fab52cc56 (patch) | |
tree | d8e8940c78ff44216148bd4975930cf8a4225869 /tests/exec.test | |
parent | a8a9d42601aedcc95ce0aa214d48ab012ed06569 (diff) | |
download | tcl-b2dabdc1ebc905c6eb5c4f0a7511239fab52cc56.zip tcl-b2dabdc1ebc905c6eb5c4f0a7511239fab52cc56.tar.gz tcl-b2dabdc1ebc905c6eb5c4f0a7511239fab52cc56.tar.bz2 |
Don't depend on Spencer-specific regexp syntax (/u and /U) any more in unrelated places
. Bump http package to 2.8.6.
Diffstat (limited to 'tests/exec.test')
-rw-r--r-- | tests/exec.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/exec.test b/tests/exec.test index 64d3517..871c0c5 100644 --- a/tests/exec.test +++ b/tests/exec.test @@ -157,7 +157,7 @@ test exec-2.6 {redirecting input from immediate source, with UTF} -setup { encoding system iso8859-1 proc quotenonascii s { regsub -all {\[|\\|\]} $s {\\&} s - regsub -all {[\u007f-\uffff]} $s \ + regsub -all "\[\u007f-\uffff\]" $s \ {[apply {c {format {\u%04x} [scan $c %c]}} &]} s return [subst -novariables $s] } |