diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-04-05 01:41:21 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-04-05 01:41:21 (GMT) |
commit | ad24d78a8ea574457accd30663a366f6502be5bc (patch) | |
tree | b4566b11868c676dec44dcd91a435f0d783f9e32 /generic/tclObj.c | |
parent | b53447957866538072ba7c85a05786927801ec14 (diff) | |
download | tcl-ad24d78a8ea574457accd30663a366f6502be5bc.zip tcl-ad24d78a8ea574457accd30663a366f6502be5bc.tar.gz tcl-ad24d78a8ea574457accd30663a366f6502be5bc.tar.bz2 |
Final stage of getting dictionaries into the core. Test suite should work now!
Diffstat (limited to 'generic/tclObj.c')
-rw-r--r-- | generic/tclObj.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c index f9cee12..1a9307e 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.42 2003/01/17 22:11:02 mdejong Exp $ + * RCS: @(#) $Id: tclObj.c,v 1.43 2003/04/05 01:41:23 dkf Exp $ */ #include "tclInt.h" @@ -238,6 +238,7 @@ TclInitObjSubsystem() #endif Tcl_RegisterObjType(&tclStringType); Tcl_RegisterObjType(&tclListType); + Tcl_RegisterObjType(&tclDictType); Tcl_RegisterObjType(&tclByteCodeType); Tcl_RegisterObjType(&tclProcBodyType); Tcl_RegisterObjType(&tclArraySearchType); |