summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2004-05-06 04:41:52 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2004-05-06 04:41:52 (GMT)
commitfcc10d4dd68b2d659c7554f1d07781320a75a74b (patch)
treeeb1d8657ba0059d390e61248cdb27928523dca9a /ChangeLog
parentfb4ad76021c0fb42e1515cbabaec082a4704d394 (diff)
downloadtcl-fcc10d4dd68b2d659c7554f1d07781320a75a74b.zip
tcl-fcc10d4dd68b2d659c7554f1d07781320a75a74b.tar.gz
tcl-fcc10d4dd68b2d659c7554f1d07781320a75a74b.tar.bz2
* generic/tclInt.h:
* generic/tclObj.c (TclFreeObj): made TclFreeObj use the new macro TclFreeObjMacro(), so that the allocation and freeing of Tcl_Obj is defined in a single spot (the macros in tclInt.h), with the exception of the TCL_MEM_DEBUG case. The #ifdef logic for the corresponding macros has been reformulated to make it clearer.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8505790..137651f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2004-05-06 Miguel Sofer <msofer@users.sf.net>
+
+ * generic/tclInt.h:
+ * generic/tclObj.c (TclFreeObj): made TclFreeObj use the new macro
+ TclFreeObjMacro(), so that the allocation and freeing of Tcl_Obj
+ is defined in a single spot (the macros in tclInt.h), with the
+ exception of the TCL_MEM_DEBUG case.
+ The #ifdef logic for the corresponding macros has been reformulated
+ to make it clearer.
+
2004-05-05 Donal K. Fellows <donal.k.fellows@man.ac.uk>
* doc/break.n, doc/continue.n, doc/for.n, doc/while.n: More examples.