summaryrefslogtreecommitdiffstats
path: root/generic/tclObj.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclObj.c')
-rw-r--r--generic/tclObj.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c
index e4caf3e..67b7487 100644
--- a/generic/tclObj.c
+++ b/generic/tclObj.c
@@ -234,8 +234,8 @@ const TclObjTypeWithAbstractList tclBooleanType= {
NULL, /* updateStringProc */
TclSetBooleanFromAny, /* setFromAnyProc */
TCL_OBJTYPE_V0_1(
- LengthOne
- )
+ LengthOne
+ )}
};
const TclObjTypeWithAbstractList tclDoubleType= {
{"double", /* name */
@@ -244,8 +244,8 @@ const TclObjTypeWithAbstractList tclDoubleType= {
UpdateStringOfDouble, /* updateStringProc */
SetDoubleFromAny, /* setFromAnyProc */
TCL_OBJTYPE_V0_1(
- LengthOne
- )
+ LengthOne
+ )}
};
const TclObjTypeWithAbstractList tclIntType = {
{"int", /* name */
@@ -254,8 +254,8 @@ const TclObjTypeWithAbstractList tclIntType = {
UpdateStringOfInt, /* updateStringProc */
SetIntFromAny, /* setFromAnyProc */
TCL_OBJTYPE_V0_1(
- LengthOne
- )
+ LengthOne
+ )}
};
const TclObjTypeWithAbstractList tclBignumType = {
{"bignum", /* name */
@@ -264,8 +264,8 @@ const TclObjTypeWithAbstractList tclBignumType = {
UpdateStringOfBignum, /* updateStringProc */
NULL, /* setFromAnyProc */
TCL_OBJTYPE_V0_1(
- LengthOne
- )
+ LengthOne
+ )}
};
/*