diff options
author | andreas_kupries <akupries@shaw.ca> | 2002-03-18 22:30:48 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2002-03-18 22:30:48 (GMT) |
commit | e42cdf6e782e27a3bcaad4f2e95b53e306a3e61a (patch) | |
tree | c797656f457ad7dccc0a357854068f83fd5cdec1 /generic/tclInt.h | |
parent | 67fce567d70f2bb20e0eb20171c936fcff638400 (diff) | |
download | tcl-e42cdf6e782e27a3bcaad4f2e95b53e306a3e61a.zip tcl-e42cdf6e782e27a3bcaad4f2e95b53e306a3e61a.tar.gz tcl-e42cdf6e782e27a3bcaad4f2e95b53e306a3e61a.tar.bz2 |
* generic/tclCompile.c (TclCompileTokens): Modified imported bugfix
to use a heap variable for the message buffer instead of placing
it on the stack.
* Updated "mod-8-3-1-branch" to head of "core-8-3-1-branch" to get
the newest fixes for tcl 8.3.4 into this branch.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 84c69b8..85c9614 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -11,7 +11,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.42.2.3.2.1 2001/12/04 21:52:09 andreas_kupries Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.42.2.3.2.2 2002/03/18 22:30:50 andreas_kupries Exp $ */ #ifndef _TCLINT @@ -184,10 +184,12 @@ typedef struct Namespace { * namespace has already cached a Command * * pointer; this causes all its cached * Command* pointers to be invalidated. */ - int resolverEpoch; /* Incremented whenever the name resolution - * rules change for this namespace; this - * invalidates all byte codes compiled in - * the namespace, causing the code to be + int resolverEpoch; /* Incremented whenever (a) the name resolution + * rules change for this namespace or (b) a + * newly added command shadows a command that + * is compiled to bytecodes. + * This invalidates all byte codes compiled + * in the namespace, causing the code to be * recompiled under the new rules. */ Tcl_ResolveCmdProc *cmdResProc; /* If non-null, this procedure overrides |