summaryrefslogtreecommitdiffstats
path: root/generic/tclIO.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclIO.c')
-rw-r--r--generic/tclIO.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c
index aabae0b..c4757ea 100644
--- a/generic/tclIO.c
+++ b/generic/tclIO.c
@@ -1561,9 +1561,6 @@ Tcl_CreateChannel(
if (NULL == typePtr->watchProc) {
Tcl_Panic("channel type %s must define watchProc", typePtr->typeName);
}
- if (NULL == typePtr->getHandleProc) {
- Tcl_Panic("channel type %s must define getHandleProc", typePtr->typeName);
- }
if ((NULL!=typePtr->wideSeekProc) && (NULL == typePtr->seekProc)) {
Tcl_Panic("channel type %s must define seekProc if defining wideSeekProc", typePtr->typeName);
}