summaryrefslogtreecommitdiffstats
path: root/generic/tclObj.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-07-07 08:21:24 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-07-07 08:21:24 (GMT)
commit579f1a9429aeca6743a62756d12968c23190c0e0 (patch)
tree3be7fb9e2d062b298c19c87a701143643d6d2a63 /generic/tclObj.c
parent20d4b34f6477d15f854d40540e12bb756e48d90e (diff)
downloadtcl-579f1a9429aeca6743a62756d12968c23190c0e0.zip
tcl-579f1a9429aeca6743a62756d12968c23190c0e0.tar.gz
tcl-579f1a9429aeca6743a62756d12968c23190c0e0.tar.bz2
Add missing objTypes to catalog
Diffstat (limited to 'generic/tclObj.c')
-rw-r--r--generic/tclObj.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c
index ec3eeb5..c5d3c7c 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.62 2004/06/18 15:12:39 dkf Exp $
+ * RCS: @(#) $Id: tclObj.c,v 1.63 2004/07/07 08:21:26 dkf Exp $
*/
#include "tclInt.h"
@@ -287,6 +287,8 @@ TclInitObjSubsystem()
Tcl_RegisterObjType(&tclNsNameType);
Tcl_RegisterObjType(&tclEnsembleCmdType);
Tcl_RegisterObjType(&tclCmdNameType);
+ Tcl_RegisterObjType(&tclLocalVarNameType);
+ Tcl_RegisterObjType(&tclRegexpType);
#ifdef TCL_COMPILE_STATS
Tcl_MutexLock(&tclObjMutex);