diff options
author | dgp <dgp@users.sourceforge.net> | 2015-02-20 19:29:20 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2015-02-20 19:29:20 (GMT) |
commit | 28fe834bc3ec4966f987250b14d1dfb1cb41bd58 (patch) | |
tree | 92f9eabcac1f6948eae2b18048c13154c9ad9354 | |
parent | f6b7fa43d6cf40a22f2d7813226a32ae5ab2146d (diff) | |
download | tcl-28fe834bc3ec4966f987250b14d1dfb1cb41bd58.zip tcl-28fe834bc3ec4966f987250b14d1dfb1cb41bd58.tar.gz tcl-28fe834bc3ec4966f987250b14d1dfb1cb41bd58.tar.bz2 |
[e08c2c407b] The getHandleProc routine in the Tcl_Channel struct is
optional. Update the docs to make that clear.
-rw-r--r-- | doc/CrtChannel.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/CrtChannel.3 b/doc/CrtChannel.3 index 21b5c37..969267d 100644 --- a/doc/CrtChannel.3 +++ b/doc/CrtChannel.3 @@ -343,7 +343,7 @@ typedef struct Tcl_ChannelType { It is not necessary to provide implementations for all channel operations. Those which are not necessary may be set to NULL in the struct: \fIblockModeProc\fR, \fIseekProc\fR, \fIsetOptionProc\fR, -\fIgetOptionProc\fR, and \fIclose2Proc\fR, in addition to +\fIgetOptionProc\fR, \fIgetHandleProc\fR, and \fIclose2Proc\fR, in addition to \fIflushProc\fR, \fIhandlerProc\fR, \fIthreadActionProc\fR, and \fItruncateProc\fR. Other functions that cannot be implemented in a meaningful way should return \fBEINVAL\fR when called, to indicate |