diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-08-11 22:02:14 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-08-11 22:02:14 (GMT) |
commit | b880f036f945f9da77f73d3826046b6f1eb49a42 (patch) | |
tree | ce2cde6af5c66feec4b41d2fcbe6f81e5404d8a3 /generic/tclOOInt.h | |
parent | c3cec2c7124954f21b1b58f57e54856d29359aac (diff) | |
parent | 62c8a18cdc61772151a423b43a6252e4c89a5a43 (diff) | |
download | tcl-b880f036f945f9da77f73d3826046b6f1eb49a42.zip tcl-b880f036f945f9da77f73d3826046b6f1eb49a42.tar.gz tcl-b880f036f945f9da77f73d3826046b6f1eb49a42.tar.bz2 |
merge trunk
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 12602ca..e7d2010 100644 --- a/generic/tclOOInt.h +++ b/generic/tclOOInt.h @@ -621,7 +621,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 |