diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | generic/tclCompCmds.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2001-08-28 Jeff Hobbs <jeffh@ActiveState.com> + + * generic/tclCompCmds.c (TclPushVarName): noted 'static' defn. + [Bug #453872] + 2001-08-26 Don Porter <dgp@users.sourceforge.net> * library/auto.tcl (tcl_findLibrary): diff --git a/generic/tclCompCmds.c b/generic/tclCompCmds.c index 20616d5..fc357f3 100644 --- a/generic/tclCompCmds.c +++ b/generic/tclCompCmds.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompCmds.c,v 1.11 2001/08/25 00:08:46 hobbs Exp $ + * RCS: @(#) $Id: tclCompCmds.c,v 1.12 2001/08/28 22:05:01 hobbs Exp $ */ #include "tclInt.h" @@ -2581,7 +2581,7 @@ TclCompileWhileCmd(interp, parsePtr, envPtr) *---------------------------------------------------------------------- */ -int +static int TclPushVarName(interp, varTokenPtr, envPtr, flags, localIndexPtr, maxDepthPtr, simpleVarNamePtr, isScalarPtr) Tcl_Interp *interp; /* Used for error reporting. */ |