diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2018-08-26 11:07:37 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2018-08-26 11:07:37 (GMT) |
commit | d4d1014e7d4941e211860ee9864b7fbe829eae8d (patch) | |
tree | e655b5ea3f4637db82bd76850b596cd9b68eac5e /generic/tclOOInt.h | |
parent | f5efc84600e3a88460bdeb094d1cfa58ad5b3022 (diff) | |
parent | b3993adcfb19f12c2fe6accbaec020a9599a6294 (diff) | |
download | tcl-d4d1014e7d4941e211860ee9864b7fbe829eae8d.zip tcl-d4d1014e7d4941e211860ee9864b7fbe829eae8d.tar.gz tcl-d4d1014e7d4941e211860ee9864b7fbe829eae8d.tar.bz2 |
merge core-8-branch
Diffstat (limited to 'generic/tclOOInt.h')
-rw-r--r-- | generic/tclOOInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclOOInt.h b/generic/tclOOInt.h index ce4ea0d..1f30fed 100644 --- a/generic/tclOOInt.h +++ b/generic/tclOOInt.h @@ -599,7 +599,7 @@ MODULE_SCOPE void TclOOSetupVariableResolver(Tcl_Namespace *nsPtr); #define FOREACH(var,ary) \ for(i=0 ; i<(ary).num; i++) if ((ary).list[i] == NULL) { \ continue; \ - } else if (var = (ary).list[i], 1) + } else if (var = (ary).list[i], 1) /* * A variation where the array is an array of structs. There's no issue with |