summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2013-07-18 15:42:54 (GMT)
committerdgp <dgp@users.sourceforge.net>2013-07-18 15:42:54 (GMT)
commit2aed1acbd1bd855bbee0a630877ba16b50c84d58 (patch)
tree10b1fe79c403e17da470df6f8eb602fc0b7c1a7d /generic/tclCompile.c
parentc2d6c48dd921e7120d626f1a85977ae130dd109e (diff)
parent81a1a91361cc615d3e9bf5b9016bd12cd258aa8d (diff)
downloadtcl-2aed1acbd1bd855bbee0a630877ba16b50c84d58.zip
tcl-2aed1acbd1bd855bbee0a630877ba16b50c84d58.tar.gz
tcl-2aed1acbd1bd855bbee0a630877ba16b50c84d58.tar.bz2
merge trunk
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r--generic/tclCompile.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c
index 763e8f1..a52ad3e 100644
--- a/generic/tclCompile.c
+++ b/generic/tclCompile.c
@@ -2109,7 +2109,6 @@ TclCompileScript(
Tcl_LogCommandInfo(interp, script, parse.commandStart,
parse.term + 1 - parse.commandStart);
TclCompileSyntaxError(interp, envPtr);
- Tcl_FreeParse(&parse);
return;
}
@@ -2242,10 +2241,7 @@ TclCompileScript(
*/
Tcl_LogCommandInfo(interp, script, parsePtr->commandStart,
- /* Drop the command terminator (";","]") if appropriate */
- (parsePtr->term ==
- parsePtr->commandStart + parsePtr->commandSize - 1)?
- parsePtr->commandSize - 1 : parsePtr->commandSize);
+ parsePtr->term + 1 - parsePtr->commandStart);
TclCompileSyntaxError(interp, envPtr);
break;
}