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/tclInt.decls | |
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/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index 208ca9e..3d77a83 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -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: tclInt.decls,v 1.97 2006/06/21 03:10:39 dgp Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.98 2006/09/30 19:00:12 msofer Exp $ library tcl @@ -890,6 +890,10 @@ declare 225 generic { int keyc, Tcl_Obj *CONST keyv[], int flags) } +declare 226 generic { + int TclObjBeingDeleted(Tcl_Obj *objPtr) +} + ############################################################################## # Define the platform specific internal Tcl interface. These functions are |