diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2005-11-04 02:13:40 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2005-11-04 02:13:40 (GMT) |
commit | f30e4208875db88eacedeabb363d94c5dbcc32ce (patch) | |
tree | 7a2c5ad8267a9ae169b566172b931957957725ef /generic/tclInt.h | |
parent | 1917d75e5fe50a58035bc8a2a47fdca8338ec9d7 (diff) | |
download | tcl-f30e4208875db88eacedeabb363d94c5dbcc32ce.zip tcl-f30e4208875db88eacedeabb363d94c5dbcc32ce.tar.gz tcl-f30e4208875db88eacedeabb363d94c5dbcc32ce.tar.bz2 |
* generic/tclInt.h:
* generic/tclNamesp.c:
* generic/tclVar.c:
* tests/trace.test: fix for [Bugs 1338280/1337229]; changed to use
the same approach as the 8.4 patch in the ticket (i.e., removed
the patch committed on 2005-31-10).
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 32ef3b0..0a6fa66 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -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.h,v 1.255 2005/10/10 19:52:44 dgp Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.256 2005/11/04 02:13:41 msofer Exp $ */ #ifndef _TCLINT @@ -2019,6 +2019,7 @@ MODULE_SCOPE int TclChanCaughtErrorBypass(Tcl_Interp *interp, MODULE_SCOPE void TclCleanupLiteralTable(Tcl_Interp* interp, LiteralTable* tablePtr); MODULE_SCOPE int TclDoubleDigits(char* buf, double value, int* signum); +MODULE_SCOPE void TclDeleteNamespaceVars(Namespace *nsPtr); MODULE_SCOPE void TclExpandTokenArray(Tcl_Parse *parsePtr); MODULE_SCOPE int TclFileAttrsCmd(Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[]); |