diff options
author | brad.harder@gmail.com <bch> | 2015-02-19 22:01:36 (GMT) |
---|---|---|
committer | brad.harder@gmail.com <bch> | 2015-02-19 22:01:36 (GMT) |
commit | 776efa059468f775f86908d2fff822d4d912bcef (patch) | |
tree | 678e0d8a898a9c8049003c79a22d1bfb887c15d5 | |
parent | b2ed01ca1e38bd9d67ae58323dd121869f5ed8bf (diff) | |
download | tcl-776efa059468f775f86908d2fff822d4d912bcef.zip tcl-776efa059468f775f86908d2fff822d4d912bcef.tar.gz tcl-776efa059468f775f86908d2fff822d4d912bcef.tar.bz2 |
per ticket [e08c2c407b053bbfaab] (and stray code related to [84f208762f172e]) adj code to passing test suite
-rw-r--r-- | generic/tclIO.c | 3 |
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); } |