diff options
author | dgp <dgp@users.sourceforge.net> | 2013-09-07 21:19:47 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-09-07 21:19:47 (GMT) |
commit | 7d65b0f9b214a041c9007cf45220fe7c8a5c88f0 (patch) | |
tree | e37a1e5e986f7b58a0b5da2d438f30df452ee611 /generic/tclProc.c | |
parent | 4bba36ca59c3760f9e2a593e8135aa6f8352919e (diff) | |
parent | 133768540d48de8f9bf0638fd9983178588bd18a (diff) | |
download | tcl-7d65b0f9b214a041c9007cf45220fe7c8a5c88f0.zip tcl-7d65b0f9b214a041c9007cf45220fe7c8a5c88f0.tar.gz tcl-7d65b0f9b214a041c9007cf45220fe7c8a5c88f0.tar.bz2 |
merge trunkbug_86ceb4e2b6
Diffstat (limited to 'generic/tclProc.c')
-rw-r--r-- | generic/tclProc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclProc.c b/generic/tclProc.c index 18985a1..1314719 100644 --- a/generic/tclProc.c +++ b/generic/tclProc.c @@ -271,8 +271,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); @@ -2595,8 +2595,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; } /* |