diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-03-05 23:23:06 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-03-05 23:23:06 (GMT) |
commit | 50f9d6b3744f31f806d0f0a86cf96cb2608c86e0 (patch) | |
tree | 2cf7576b82f2973ee8d6635e6ec5eac4329b88ad /ChangeLog | |
parent | 68229918fe6fcdfed3765fb67237c56da8eda8e9 (diff) | |
download | tcl-50f9d6b3744f31f806d0f0a86cf96cb2608c86e0.zip tcl-50f9d6b3744f31f806d0f0a86cf96cb2608c86e0.tar.gz tcl-50f9d6b3744f31f806d0f0a86cf96cb2608c86e0.tar.bz2 |
Updated changelog with message relating to code audit from earlier
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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 |