summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixPipe.c
diff options
context:
space:
mode:
authoroehhar <harald.oehlmann@elmicron.de>2023-12-05 17:29:53 (GMT)
committeroehhar <harald.oehlmann@elmicron.de>2023-12-05 17:29:53 (GMT)
commit0c49de41ba7190b215cf6a58ce24be67af70d57e (patch)
treea0245594ec5bf0539260421c0aaa9b0cc4658316 /unix/tclUnixPipe.c
parent4f1e1c42b0e26190057bb915acf701907f82ff63 (diff)
downloadtcl-0c49de41ba7190b215cf6a58ce24be67af70d57e.zip
tcl-0c49de41ba7190b215cf6a58ce24be67af70d57e.tar.gz
tcl-0c49de41ba7190b215cf6a58ce24be67af70d57e.tar.bz2
Comment correction: Error channels should *not* raise encoding errors
Diffstat (limited to 'unix/tclUnixPipe.c')
-rw-r--r--unix/tclUnixPipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixPipe.c b/unix/tclUnixPipe.c
index f1e3fb8..64dd8baf 100644
--- a/unix/tclUnixPipe.c
+++ b/unix/tclUnixPipe.c
@@ -1102,7 +1102,7 @@ PipeClose2Proc(
errChan = Tcl_MakeFileChannel(
INT2PTR(GetFd(pipePtr->errorFile)),
TCL_READABLE);
- /* Error channels should raise encoding errors */
+ /* Error channels should not raise encoding errors */
Tcl_SetChannelOption(NULL, errChan, "-profile", "replace");
} else {
errChan = NULL;