diff options
| author | pooryorick <com.digitalsmarties@pooryorick.com> | 2023-04-03 21:20:28 (GMT) |
|---|---|---|
| committer | pooryorick <com.digitalsmarties@pooryorick.com> | 2023-04-03 21:20:28 (GMT) |
| commit | e1420101e1c4af3160036616032f677b1b8dc05b (patch) | |
| tree | 2a3ed8e759765b838c6c58993d9c3f218a1d622a /generic/tclEncoding.c | |
| parent | 530c3b8f01ef15a975f0fc777f74e32bac90eae2 (diff) | |
| parent | 5d3ba90d87622e64517625053b18380f5dd96908 (diff) | |
| download | tcl-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.c | 3 |
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; |
