diff options
author | andreas_kupries <akupries@shaw.ca> | 2009-10-23 19:29:26 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2009-10-23 19:29:26 (GMT) |
commit | 57bcf0eab795302412c6566f130e9ea290926f6e (patch) | |
tree | 0021513d15dff2dd400670eb79adf29b78b88bfb | |
parent | df73c352f557f1c2e30008f8d093c8ed0cf22f5b (diff) | |
download | tcl-57bcf0eab795302412c6566f130e9ea290926f6e.zip tcl-57bcf0eab795302412c6566f130e9ea290926f6e.tar.gz tcl-57bcf0eab795302412c6566f130e9ea290926f6e.tar.bz2 |
* generic/tclCompCmds.c: [Bug 2881263] (TclCompileForeachCmd,
TclCompileLindexCmd): Fixed. Moved the use of
DefineLineInformation after all regular variable declarations, so
that an empty statement (-UTIP_280) doesn't confuse c89 compilers.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | generic/tclCompCmds.c | 7 |
2 files changed, 9 insertions, 3 deletions
@@ -1,5 +1,10 @@ 2009-10-23 Andreas Kupries <andreask@activestate.com> + * generic/tclCompCmds.c: [Bug 2881263] (TclCompileForeachCmd, + TclCompileLindexCmd): Fixed. Moved the use of + DefineLineInformation after all regular variable declarations, so + that an empty statement (-UTIP_280) doesn't confuse c89 compilers. + * library/platform/pkgIndex.tcl: Backported the platform packages * library/platform/platform.tcl: from head and8.5 into the 8.4 * library/platform/shell.tcl: branch. Updated makefiles to install diff --git a/generic/tclCompCmds.c b/generic/tclCompCmds.c index 26c387b..12f127e 100644 --- a/generic/tclCompCmds.c +++ b/generic/tclCompCmds.c @@ -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: tclCompCmds.c,v 1.39.2.8 2009/08/25 20:59:10 andreas_kupries Exp $ + * RCS: @(#) $Id: tclCompCmds.c,v 1.39.2.9 2009/10/23 19:29:26 andreas_kupries Exp $ */ #include "tclInt.h" @@ -769,7 +769,6 @@ TclCompileForeachCmd(interp, parsePtr, envPtr) char buffer[32 + TCL_INTEGER_SPACE]; int savedStackDepth = envPtr->currStackDepth; - DefineLineInformation; #ifdef TCL_TIP280 int bodyIndex; #endif @@ -786,6 +785,8 @@ TclCompileForeachCmd(interp, parsePtr, envPtr) int *varcList = varcListStaticSpace; CONST char ***varvList = varvListStaticSpace; + DefineLineInformation; + /* * If the foreach command isn't in a procedure, don't compile it inline: * the payoff is too small. @@ -1851,10 +1852,10 @@ TclCompileLindexCmd(interp, parsePtr, envPtr) { Tcl_Token *varTokenPtr; int code, i; + int numWords; DefineLineInformation; - int numWords; numWords = parsePtr->numWords; /* |