diff options
author | apnadkarni <apnmbx-wits@yahoo.com> | 2022-10-11 15:07:33 (GMT) |
---|---|---|
committer | apnadkarni <apnmbx-wits@yahoo.com> | 2022-10-11 15:07:33 (GMT) |
commit | 4391b633d94f7d36fc07107753bac88a29504488 (patch) | |
tree | 55b5587ba5dd47c586d9dc97eef2c58365555950 /generic/tclNamesp.c | |
parent | b2c3781bb08dadad024633598e0d62be4cd1d489 (diff) | |
download | tcl-4391b633d94f7d36fc07107753bac88a29504488.zip tcl-4391b633d94f7d36fc07107753bac88a29504488.tar.gz tcl-4391b633d94f7d36fc07107753bac88a29504488.tar.bz2 |
TIP 644 - Make Tcl_ObjType extensible
Diffstat (limited to 'generic/tclNamesp.c')
-rw-r--r-- | generic/tclNamesp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c index 979426c..1882e0a 100644 --- a/generic/tclNamesp.c +++ b/generic/tclNamesp.c @@ -130,7 +130,8 @@ static const Tcl_ObjType nsNameType = { FreeNsNameInternalRep, /* freeIntRepProc */ DupNsNameInternalRep, /* dupIntRepProc */ NULL, /* updateStringProc */ - SetNsNameFromAny /* setFromAnyProc */ + SetNsNameFromAny, /* setFromAnyProc */ + TCL_OBJTYPE_V0 }; #define NsNameSetInternalRep(objPtr, nnPtr) \ |