summaryrefslogtreecommitdiffstats
path: root/generic/tclObj.c
diff options
context:
space:
mode:
authormsofer <msofer@noemail.net>2001-05-26 01:25:59 (GMT)
committermsofer <msofer@noemail.net>2001-05-26 01:25:59 (GMT)
commit81fbb3be98f45923004f3d079d051a41232106af (patch)
tree0e06178b65f3cb3a4a76a355b8724bdb0df85b82 /generic/tclObj.c
parente889fda784667400a375a33d1a338e9b72a02901 (diff)
downloadtcl-81fbb3be98f45923004f3d079d051a41232106af.zip
tcl-81fbb3be98f45923004f3d079d051a41232106af.tar.gz
tcl-81fbb3be98f45923004f3d079d051a41232106af.tar.bz2
[Patch #424851]: Faster array searching & obj cleanup
FossilOrigin-Name: 730cd270f40868e988650a5519390091adc56626
Diffstat (limited to 'generic/tclObj.c')
-rw-r--r--generic/tclObj.c5
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);