diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2006-09-30 19:00:11 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2006-09-30 19:00:11 (GMT) |
commit | 25eaf268205e1fd47ec88e2323b0c8806f1b617a (patch) | |
tree | 57fe07a36dd760af3a032e5be075bc392479e90c /generic/tclStubInit.c | |
parent | 7d238aee5a63e4f16bafa9863ec090f904e66df2 (diff) | |
download | tcl-25eaf268205e1fd47ec88e2323b0c8806f1b617a.zip tcl-25eaf268205e1fd47ec88e2323b0c8806f1b617a.tar.gz tcl-25eaf268205e1fd47ec88e2323b0c8806f1b617a.tar.bz2 |
* generic/tclInt.decls:
* generic/tclInt.h:
* generic/tclIntDecls.h:
* generic/tclObj.c:
* generic/tclStubInit.c: added an internal function
TclObjBeingDeleted to provide info as to the reason for the loss
of an internal rep. [FR 1512138]
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r-- | generic/tclStubInit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 4a68100..535566f 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStubInit.c,v 1.132 2006/09/22 18:13:29 andreas_kupries Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.133 2006/09/30 19:00:13 msofer Exp $ */ #include "tclInt.h" @@ -317,6 +317,7 @@ TclIntStubs tclIntStubs = { NULL, /* 223 */ TclGetPlatform, /* 224 */ TclTraceDictPath, /* 225 */ + TclObjBeingDeleted, /* 226 */ }; TclIntPlatStubs tclIntPlatStubs = { |