diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2001-05-26 01:25:59 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2001-05-26 01:25:59 (GMT) |
commit | deb12f9f60a4a57e4922c929ee5a7a3f6966e098 (patch) | |
tree | 0e06178b65f3cb3a4a76a355b8724bdb0df85b82 /generic/tclObj.c | |
parent | 3b5f432c9bb4ae184008bbd89f63fd2c35f242ec (diff) | |
download | tcl-deb12f9f60a4a57e4922c929ee5a7a3f6966e098.zip tcl-deb12f9f60a4a57e4922c929ee5a7a3f6966e098.tar.gz tcl-deb12f9f60a4a57e4922c929ee5a7a3f6966e098.tar.bz2 |
[Patch #424851]: Faster array searching & obj cleanup
Diffstat (limited to 'generic/tclObj.c')
-rw-r--r-- | generic/tclObj.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c index cd2cd7a..21a4caf 100644 --- a/generic/tclObj.c +++ b/generic/tclObj.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclObj.c,v 1.21 2001/05/23 06:05:44 hobbs Exp $ + * RCS: @(#) $Id: tclObj.c,v 1.22 2001/05/26 01:25:59 msofer Exp $ */ #include "tclInt.h" @@ -155,6 +155,9 @@ TclInitObjSubsystem() Tcl_RegisterObjType(&tclListType); Tcl_RegisterObjType(&tclByteCodeType); Tcl_RegisterObjType(&tclProcBodyType); + Tcl_RegisterObjType(&tclArraySearchType); + Tcl_RegisterObjType(&tclIndexType); + Tcl_RegisterObjType(&tclNsNameType); #ifdef TCL_COMPILE_STATS Tcl_MutexLock(&tclObjMutex); |