summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-02-06 14:57:27 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-02-06 14:57:27 (GMT)
commitfc6dd58f98cfa245f699aed0182472a28be9c538 (patch)
tree72dde0913e01c1b495db1ad2b80b70152d0c7d45 /tools
parent1d283a9126a5736f9715f14f100d9d13febc649a (diff)
downloadtcl-fc6dd58f98cfa245f699aed0182472a28be9c538.zip
tcl-fc6dd58f98cfa245f699aed0182472a28be9c538.tar.gz
tcl-fc6dd58f98cfa245f699aed0182472a28be9c538.tar.bz2
\032 -> \x1A, since hex reads better than octal
Diffstat (limited to 'tools')
-rw-r--r--tools/genStubs.tcl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/genStubs.tcl b/tools/genStubs.tcl
index 4f4acbb..28138e2 100644
--- a/tools/genStubs.tcl
+++ b/tools/genStubs.tcl
@@ -257,7 +257,7 @@ proc genStubs::rewriteFile {file text} {
return
}
set in [open ${file} r]
- fconfigure $in -eofchar "\032 {}" -encoding utf-8
+ fconfigure $in -eofchar "\x1A {}" -encoding utf-8
set out [open ${file}.new w]
fconfigure $out -translation lf -encoding utf-8