Index: generic/nsfObj.c =================================================================== diff -u -N -re48161ab167236344f7d23da3e855c31d1a1ebc7 -ra2f1d9672f99e4e8a5981e11a6676dd174594883 --- generic/nsfObj.c (.../nsfObj.c) (revision e48161ab167236344f7d23da3e855c31d1a1ebc7) +++ generic/nsfObj.c (.../nsfObj.c) (revision a2f1d9672f99e4e8a5981e11a6676dd174594883) @@ -61,13 +61,19 @@ MethodDupInternalRep, /* dupIntRepProc */ NULL, /* updateStringProc */ NULL /* setFromAnyProc */ +#ifdef TCL_OBJTYPE_V0 + ,TCL_OBJTYPE_V0 +#endif }; Tcl_ObjType NsfObjectMethodObjType = { "nsfObjectMethod", /* name */ MethodFreeInternalRep, /* freeIntRepProc */ MethodDupInternalRep, /* dupIntRepProc */ NULL, /* updateStringProc */ NULL /* setFromAnyProc */ +#ifdef TCL_OBJTYPE_V0 + ,TCL_OBJTYPE_V0 +#endif }; /* @@ -220,6 +226,9 @@ FlagDupInternalRep, /* dupIntRepProc */ NULL, /* updateStringProc */ NULL /* setFromAnyProc */ +#ifdef TCL_OBJTYPE_V0 + ,TCL_OBJTYPE_V0 +#endif }; /* @@ -380,6 +389,9 @@ MixinregDupInternalRep, /* dupIntRepProc */ NULL, /* updateStringProc */ MixinregSetFromAny /* setFromAnyProc */ +#ifdef TCL_OBJTYPE_V0 + ,TCL_OBJTYPE_V0 +#endif }; /* @@ -680,6 +692,9 @@ FilterregDupInternalRep, /* dupIntRepProc */ NULL, /* updateStringProc */ FilterregSetFromAny /* setFromAnyProc */ +#ifdef TCL_OBJTYPE_V0 + ,TCL_OBJTYPE_V0 +#endif }; /*