diff options
| author | oehhar <harald.oehlmann@elmicron.de> | 2023-12-05 17:29:53 (GMT) |
|---|---|---|
| committer | oehhar <harald.oehlmann@elmicron.de> | 2023-12-05 17:29:53 (GMT) |
| commit | e42a41e9428f165a288baf91b57347dba6832b8e (patch) | |
| tree | a0245594ec5bf0539260421c0aaa9b0cc4658316 /unix/tclUnixPipe.c | |
| parent | 0927e6c7190bbc2391b125530d8976d7342dbabe (diff) | |
| download | tcl-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.c | 2 |
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; |
