diff options
| -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 |
