diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-02-29 22:35:27 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-02-29 22:35:27 (GMT) |
commit | 761897c234e411b8ede7cad7cd97826eeaae9850 (patch) | |
tree | 24d210b443eb8490c24363a3fafb1987ee4ab084 /tests/source.test | |
parent | a1416a6c397598835f3c599368c200d6e5402223 (diff) | |
download | tcl-761897c234e411b8ede7cad7cd97826eeaae9850.zip tcl-761897c234e411b8ede7cad7cd97826eeaae9850.tar.gz tcl-761897c234e411b8ede7cad7cd97826eeaae9850.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 1e5b732..06d6b51 100644 --- a/tests/source.test +++ b/tests/source.test @@ -124,7 +124,7 @@ test source-2.7 {utf-8 with BOM} -setup { } -body { encoding system utf-8 set out [open $sourcefile w] - puts $out "\ufffeset y new-y" + puts $out "\ufeffset y new-y" close $out set y old-y source $sourcefile |