summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2013-07-10 03:28:37 (GMT)
committerdgp <dgp@users.sourceforge.net>2013-07-10 03:28:37 (GMT)
commit98b5a1b51d301f8712ef1dd7e9a321804d93ba02 (patch)
treeb7bd7adbdaf69c141a0b77b3dbf0f595a1362a2c
parentea62135f72eea3a5096735196d59c2b6785e942e (diff)
downloadtcl-98b5a1b51d301f8712ef1dd7e9a321804d93ba02.zip
tcl-98b5a1b51d301f8712ef1dd7e9a321804d93ba02.tar.gz
tcl-98b5a1b51d301f8712ef1dd7e9a321804d93ba02.tar.bz2
Remove the (now unused) wlineat arguments.
-rw-r--r--generic/tclCompile.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c
index c31d256..5f4acff 100644
--- a/generic/tclCompile.c
+++ b/generic/tclCompile.c
@@ -1783,7 +1783,6 @@ CompileInvocation(
Tcl_Token *tokenPtr,
Tcl_Obj *cmdObj,
int numWords,
- int wlineat,
CompileEnv *envPtr)
{
int wordIdx = 0;
@@ -1834,7 +1833,6 @@ CompileExpanded(
Tcl_Token *tokenPtr,
Tcl_Obj *cmdObj,
int numWords,
- int wlineat,
CompileEnv *envPtr)
{
int wordIdx = 0;
@@ -2095,12 +2093,10 @@ CompileCommandTokens(
if (expand) {
CompileExpanded(interp, parsePtr->tokenPtr,
- cmdKnown ? cmdObj : NULL, parsePtr->numWords, wlineat,
- envPtr);
+ cmdKnown ? cmdObj : NULL, parsePtr->numWords, envPtr);
} else {
CompileInvocation(interp, parsePtr->tokenPtr,
- cmdKnown ? cmdObj : NULL, parsePtr->numWords, wlineat,
- envPtr);
+ cmdKnown ? cmdObj : NULL, parsePtr->numWords, envPtr);
}
}