summaryrefslogtreecommitdiffstats
path: root/generic/tclEncoding.c
diff options
context:
space:
mode:
authorpooryorick <com.digitalsmarties@pooryorick.com>2023-04-03 21:20:28 (GMT)
committerpooryorick <com.digitalsmarties@pooryorick.com>2023-04-03 21:20:28 (GMT)
commite1420101e1c4af3160036616032f677b1b8dc05b (patch)
tree2a3ed8e759765b838c6c58993d9c3f218a1d622a /generic/tclEncoding.c
parent530c3b8f01ef15a975f0fc777f74e32bac90eae2 (diff)
parent5d3ba90d87622e64517625053b18380f5dd96908 (diff)
downloadtcl-e1420101e1c4af3160036616032f677b1b8dc05b.zip
tcl-e1420101e1c4af3160036616032f677b1b8dc05b.tar.gz
tcl-e1420101e1c4af3160036616032f677b1b8dc05b.tar.bz2
Fix for [fa3d9fd818fa0072], [fcopy $chan1 $chan2 -size $size] is not [puts
-nonewline $chan2 [read $chan1 -size $size].
Diffstat (limited to 'generic/tclEncoding.c')
-rw-r--r--generic/tclEncoding.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tclEncoding.c b/generic/tclEncoding.c
index 2a96383..689fa50 100644
--- a/generic/tclEncoding.c
+++ b/generic/tclEncoding.c
@@ -2570,8 +2570,7 @@ UtfToUtfProc(
}
} else {
/*
- * Convert 0xC080 to real nulls when we are in output mode,
- * irrespective of the profile.
+ * For output convert 0xC080 to a real null.
*/
*dst++ = 0;
src += 2;