summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorandreas_kupries <akupries@shaw.ca>2009-10-23 19:29:26 (GMT)
committerandreas_kupries <akupries@shaw.ca>2009-10-23 19:29:26 (GMT)
commit57bcf0eab795302412c6566f130e9ea290926f6e (patch)
tree0021513d15dff2dd400670eb79adf29b78b88bfb /generic
parentdf73c352f557f1c2e30008f8d093c8ed0cf22f5b (diff)
downloadtcl-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.
Diffstat (limited to 'generic')
-rw-r--r--generic/tclCompCmds.c7
1 files changed, 4 insertions, 3 deletions
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;
/*