diff options
| author | dgp@users.sourceforge.net <dgp> | 2013-08-06 13:20:36 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2013-08-06 13:20:36 (GMT) |
| commit | 69254dabeb027fd7a4705a4abb51a565901e8cc1 (patch) | |
| tree | 27620928337e684beb6dd84429d9582c3a5d0dbd /generic/tclProc.c | |
| parent | 0d1d9ca281c1f807f9ed60e05295c24d28d98b8f (diff) | |
| download | tcl-69254dabeb027fd7a4705a4abb51a565901e8cc1.zip tcl-69254dabeb027fd7a4705a4abb51a565901e8cc1.tar.gz tcl-69254dabeb027fd7a4705a4abb51a565901e8cc1.tar.bz2 | |
Eliminate the union that is no longer needed.
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; } /* |
