diff options
author | dgp <dgp@users.sourceforge.net> | 2005-11-18 15:58:18 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-11-18 15:58:18 (GMT) |
commit | a8c8af2d7203f31a4c526483f57e1674db35d1e8 (patch) | |
tree | 187cd9e02b8e923a0b7f39c75104388a0a909376 /generic/tclObj.c | |
parent | 4d8ccb4db88d7ce2ba04cdf1425f5373177a132f (diff) | |
download | tcl-a8c8af2d7203f31a4c526483f57e1674db35d1e8.zip tcl-a8c8af2d7203f31a4c526483f57e1674db35d1e8.tar.gz tcl-a8c8af2d7203f31a4c526483f57e1674db35d1e8.tar.bz2 |
* generic/tclListObj.c: Restored the SetListFromAny routine to
* generic/tclObj.c: the "list" Tcl_ObjType, and restored the
Tcl_RegisterObjType() call for "list". This addresses the needs
of some "bridge" extensions to examine whether the Tcl_ObjType of
a Tcl_Obj is that of the "list" Tcl_ObjType.
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 e82d2dc..e57681f 100644 --- a/generic/tclObj.c +++ b/generic/tclObj.c @@ -12,7 +12,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.99 2005/11/13 01:21:39 msofer Exp $ + * RCS: @(#) $Id: tclObj.c,v 1.100 2005/11/18 15:58:18 dgp Exp $ */ #include "tclInt.h" @@ -352,6 +352,7 @@ TclInitObjSubsystem(void) Tcl_RegisterObjType(&tclEndOffsetType); Tcl_RegisterObjType(&tclIntType); Tcl_RegisterObjType(&tclStringType); + Tcl_RegisterObjType(&tclListType); Tcl_RegisterObjType(&tclDictType); Tcl_RegisterObjType(&tclByteCodeType); Tcl_RegisterObjType(&tclArraySearchType); |