diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-02-29 22:38:28 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-02-29 22:38:28 (GMT) |
commit | 786b9476948b51cf309ed1a8d72128a848c49404 (patch) | |
tree | ba8097797b0b02c73971d1ae6c08582b3d1be312 /tests/source.test | |
parent | 27f2997b0bae6113da9da3d21bef2ce8b4b048e3 (diff) | |
parent | da3c4caf80cba57f26b99b8c73f99978101d9d42 (diff) | |
download | tcl-786b9476948b51cf309ed1a8d72128a848c49404.zip tcl-786b9476948b51cf309ed1a8d72128a848c49404.tar.gz tcl-786b9476948b51cf309ed1a8d72128a848c49404.tar.bz2 |
oops, that's no utf-8 BOM ;-(
Diffstat (limited to 'tests/source.test')
-rw-r--r-- | tests/source.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/source.test b/tests/source.test index e79b211..641838c 100644 --- a/tests/source.test +++ b/tests/source.test @@ -112,7 +112,7 @@ test source-2.7 {utf-8 with BOM} -setup { } -body { set out [open $sourcefile w] fconfigure $out -encoding utf-8 - puts $out "\ufffeset y new-y" + puts $out "\ufeffset y new-y" close $out set y old-y source -encoding utf-8 $sourcefile |