diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2004-05-06 04:41:52 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2004-05-06 04:41:52 (GMT) |
commit | fcc10d4dd68b2d659c7554f1d07781320a75a74b (patch) | |
tree | eb1d8657ba0059d390e61248cdb27928523dca9a /ChangeLog | |
parent | fb4ad76021c0fb42e1515cbabaec082a4704d394 (diff) | |
download | tcl-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-- | ChangeLog | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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. |