summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2006-03-03 06:53:08 (GMT)
committerdgp <dgp@users.sourceforge.net>2006-03-03 06:53:08 (GMT)
commit123991e14661143522122cc5441e238b679414e3 (patch)
tree83819449224b66c71daed0f09dacdad24c47eecf /generic
parenta0d9058325f3f9f666dedb54d330ac9a8f01eb7b (diff)
downloadtcl-123991e14661143522122cc5441e238b679414e3.zip
tcl-123991e14661143522122cc5441e238b679414e3.tar.gz
tcl-123991e14661143522122cc5441e238b679414e3.tar.bz2
* generic/tclObj.c: Compatibility support for existing code that
calls Tcl_GetObjType("boolean").
Diffstat (limited to 'generic')
-rw-r--r--generic/tclObj.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c
index 5237cd4..559d717 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.103 2005/12/13 22:43:18 kennykb Exp $
+ * RCS: @(#) $Id: tclObj.c,v 1.104 2006/03/03 06:53:09 dgp Exp $
*/
#include "tclInt.h"
@@ -214,13 +214,20 @@ static int SetCmdNameFromAny(Tcl_Interp *interp, Tcl_Obj *objPtr);
* implementations.
*/
-Tcl_ObjType tclBooleanType = {
+Tcl_ObjType oldBooleanType = {
"boolean", /* name */
NULL, /* freeIntRepProc */
NULL, /* dupIntRepProc */
NULL, /* updateStringProc */
SetBooleanFromAny /* setFromAnyProc */
};
+Tcl_ObjType tclBooleanType = {
+ "booleanString", /* name */
+ NULL, /* freeIntRepProc */
+ NULL, /* dupIntRepProc */
+ NULL, /* updateStringProc */
+ SetBooleanFromAny /* setFromAnyProc */
+};
Tcl_ObjType tclDoubleType = {
"double", /* name */
NULL, /* freeIntRepProc */
@@ -363,6 +370,9 @@ TclInitObjSubsystem(void)
Tcl_RegisterObjType(&tclRegexpType);
Tcl_RegisterObjType(&tclProcBodyType);
+ /* For backward compatibility only ... */
+ Tcl_RegisterObjType(&oldBooleanType);
+
#ifdef TCL_COMPILE_STATS
Tcl_MutexLock(&tclObjMutex);
tclObjsAlloced = 0;