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 | 0c49de41ba7190b215cf6a58ce24be67af70d57e (patch) | |
| tree | a0245594ec5bf0539260421c0aaa9b0cc4658316 | |
| parent | 4f1e1c42b0e26190057bb915acf701907f82ff63 (diff) | |
| download | tcl-0c49de41ba7190b215cf6a58ce24be67af70d57e.zip tcl-0c49de41ba7190b215cf6a58ce24be67af70d57e.tar.gz tcl-0c49de41ba7190b215cf6a58ce24be67af70d57e.tar.bz2 | |
Comment correction: Error channels should *not* raise encoding errors
| -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; |
