diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2005-04-25 10:05:25 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2005-04-25 10:05:25 (GMT) |
commit | 11714c91d63eb05f4a1afed228413e9fc8f65c1c (patch) | |
tree | c2674176bcf2e4c7cfe2fad674f52c45a2a95df6 | |
parent | 2f9355874f2214056407007d14118954c707d15d (diff) | |
download | tcl-11714c91d63eb05f4a1afed228413e9fc8f65c1c.zip tcl-11714c91d63eb05f4a1afed228413e9fc8f65c1c.tar.gz tcl-11714c91d63eb05f4a1afed228413e9fc8f65c1c.tar.bz2 |
fix comments
-rw-r--r-- | generic/tclExecute.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index f75f0dd..32c4535 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclExecute.c,v 1.185 2005/04/25 10:01:55 msofer Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.186 2005/04/25 10:05:25 msofer Exp $ */ #include "tclInt.h" @@ -4713,7 +4713,10 @@ TclExecuteByteCode(interp, codePtr) * If some var in some var list still has a remaining list * element iterate one more time. Assign to var the next * element from its value list. We already checked above - * that each list temp holds a valid list object. + * that each list temp holds a valid list object (by calling + * Tcl_ListObjLength), but cannot rely on that check remaining + * valid: one list could have been shimmered as a side effect of + * setting a traced variable. */ if (continueLoop) { |