diff options
author | dgp <dgp@users.sourceforge.net> | 2015-06-08 17:19:09 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2015-06-08 17:19:09 (GMT) |
commit | 66051f76ca26cfef91f41c9df33a0ad1523e00ed (patch) | |
tree | 424526b1c3a4edcf10e4e24ab7b6741a6d092573 /generic | |
parent | 0209d36677da9f01d910adf104ed84f066cc1ece (diff) | |
parent | f5b6f91e7a334f96572f303116009f8d1304bed4 (diff) | |
download | tcl-66051f76ca26cfef91f41c9df33a0ad1523e00ed.zip tcl-66051f76ca26cfef91f41c9df33a0ad1523e00ed.tar.gz tcl-66051f76ca26cfef91f41c9df33a0ad1523e00ed.tar.bz2 |
Stop documentation lie about command rename traces and comment lie about
what's done with them in TclOO.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclOO.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclOO.c b/generic/tclOO.c index e2ef1ae..84bb85a 100644 --- a/generic/tclOO.c +++ b/generic/tclOO.c @@ -793,7 +793,7 @@ ObjectRenamedTrace( ClientData clientData, /* The object being deleted. */ Tcl_Interp *interp, /* The interpreter containing the object. */ const char *oldName, /* What the object was (last) called. */ - const char *newName, /* Always NULL. */ + const char *newName, /* What it's getting renamed to. (unused) */ int flags) /* Why was the object deleted? */ { Object *oPtr = clientData; |