Index: ChangeLog =================================================================== diff -u -rfbca120f6991ae781737abc21ed788d5a0ccf5dc -ra65ff6b8258c66e5e7bb6c4e8567111baa0f08a3 --- ChangeLog (.../ChangeLog) (revision fbca120f6991ae781737abc21ed788d5a0ccf5dc) +++ ChangeLog (.../ChangeLog) (revision a65ff6b8258c66e5e7bb6c4e8567111baa0f08a3) @@ -20,6 +20,8 @@ call ::xotcl::finalize in the "delete trace" in AOLserver (as it happens in OpenACS). + Note, that ::xotcl::finalize is not intended for application programs. + * some code cleanup 2008-10-17 Index: doc/Announce-1.6.2 =================================================================== diff -u -rfbca120f6991ae781737abc21ed788d5a0ccf5dc -ra65ff6b8258c66e5e7bb6c4e8567111baa0f08a3 --- doc/Announce-1.6.2 (.../Announce-1.6.2) (revision fbca120f6991ae781737abc21ed788d5a0ccf5dc) +++ doc/Announce-1.6.2 (.../Announce-1.6.2) (revision a65ff6b8258c66e5e7bb6c4e8567111baa0f08a3) @@ -19,7 +19,7 @@ - new command ::xotcl::finalize (for forcing cleanup and destuctor execution at a time in a multi-threaded environment, where it is still safe to execute - all tcl commands) + all Tcl commands) * Extended and generalized "info" method @@ -31,7 +31,7 @@ - Implemented proper downgrading of Classes to Objects (handle cases, where something was created first as an object and is - reclassed/recreated later as a class or vice versa) + reclassed/recreated later as a class) and vice versa - Reset mixin order for per-object mixins, when the superclass of a class is deleted, which is used as per-object mixin Index: doc/langRef.xotcl =================================================================== diff -u -rd24dde11bfd2657f40bce1b656020c8fd70791d5 -ra65ff6b8258c66e5e7bb6c4e8567111baa0f08a3 --- doc/langRef.xotcl (.../langRef.xotcl) (revision d24dde11bfd2657f40bce1b656020c8fd70791d5) +++ doc/langRef.xotcl (.../langRef.xotcl) (revision a65ff6b8258c66e5e7bb6c4e8567111baa0f08a3) @@ -139,6 +139,8 @@ in a destructor might lead to this problem. The solution is to call ::xotcl::finalize in the "delete trace" in AOLserver (as it happens in OpenACS). +

+ Note, that ::xotcl::finalize is not intended for application programs.