summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2010-03-05 23:23:06 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2010-03-05 23:23:06 (GMT)
commit50f9d6b3744f31f806d0f0a86cf96cb2608c86e0 (patch)
tree2cf7576b82f2973ee8d6635e6ec5eac4329b88ad
parent68229918fe6fcdfed3765fb67237c56da8eda8e9 (diff)
downloadtcl-50f9d6b3744f31f806d0f0a86cf96cb2608c86e0.zip
tcl-50f9d6b3744f31f806d0f0a86cf96cb2608c86e0.tar.gz
tcl-50f9d6b3744f31f806d0f0a86cf96cb2608c86e0.tar.bz2
Updated changelog with message relating to code audit from earlier
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 77cd117..164b86d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,6 +14,15 @@
variables and argument definitions so that pointers to the function
values are used instead. Binary compatibility is not affected.
+ * generic/*.c, generic/tclInt.h, unix/*.c, macosx/*.c: Applied results
+ of doing a Code Audit. Principal changes:
+ * Use do { ... } while (0) in macros
+ * Avoid shadowing one local variable with another
+ * Use clearer 'foo.bar++;' instead of '++foo.bar;' where result not
+ required (i.e., semantically equivalent); clarity is increased
+ because it is bar that is incremented, not foo.
+ * Follow Engineering Manual rules on spacing and declarations
+
2010-03-04 Donal K. Fellows <dkf@users.sf.net>
* generic/tclOO.c (ObjectRenamedTrace): [Bug 2962664]: Add special