summaryrefslogtreecommitdiffstats
path: root/generic/tclProc.c
diff options
context:
space:
mode:
authordonal.k.fellows@manchester.ac.uk <dkf>2013-08-22 07:09:21 (GMT)
committerdonal.k.fellows@manchester.ac.uk <dkf>2013-08-22 07:09:21 (GMT)
commit9baee07d38ea836934fe3776ae101d3319301a10 (patch)
tree4d0e3e6df74f68526a9dc07d56327e5c4cbab382 /generic/tclProc.c
parent923c46cff773d6e11020ef95a279ce6010e7a6c8 (diff)
parentc233b55525da75c73b18b5b2c422107dd3dd32db (diff)
downloadtcl-9baee07d38ea836934fe3776ae101d3319301a10.zip
tcl-9baee07d38ea836934fe3776ae101d3319301a10.tar.gz
tcl-9baee07d38ea836934fe3776ae101d3319301a10.tar.bz2
merge trunk
Diffstat (limited to 'generic/tclProc.c')
-rw-r--r--generic/tclProc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclProc.c b/generic/tclProc.c
index 23d8e70..a154afa 100644
--- a/generic/tclProc.c
+++ b/generic/tclProc.c
@@ -267,8 +267,8 @@ Tcl_ProcObjCmd(
cfPtr->data.eval.path = contextPtr->data.eval.path;
Tcl_IncrRefCount(cfPtr->data.eval.path);
- cfPtr->cmd.str.cmd = NULL;
- cfPtr->cmd.str.len = 0;
+ cfPtr->cmd = NULL;
+ cfPtr->len = 0;
hePtr = Tcl_CreateHashEntry(iPtr->linePBodyPtr,
procPtr, &isNew);
@@ -2591,8 +2591,8 @@ SetLambdaFromAny(
cfPtr->data.eval.path = contextPtr->data.eval.path;
Tcl_IncrRefCount(cfPtr->data.eval.path);
- cfPtr->cmd.str.cmd = NULL;
- cfPtr->cmd.str.len = 0;
+ cfPtr->cmd = NULL;
+ cfPtr->len = 0;
}
/*