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)
commite42a41e9428f165a288baf91b57347dba6832b8e (patch)
treea0245594ec5bf0539260421c0aaa9b0cc4658316 /unix/tclUnixPipe.c
parent0927e6c7190bbc2391b125530d8976d7342dbabe (diff)
downloadtcl-e42a41e9428f165a288baf91b57347dba6832b8e.zip
tcl-e42a41e9428f165a288baf91b57347dba6832b8e.tar.gz
tcl-e42a41e9428f165a288baf91b57347dba6832b8e.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;