diff options
author | dgp <dgp@users.sourceforge.net> | 2008-09-26 20:16:38 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-09-26 20:16:38 (GMT) |
commit | 03fe58895ff5d2fff94410b80ecf3fd7907b7948 (patch) | |
tree | 756a76460a8221b5d7928f2edc5ff71491439c93 /doc | |
parent | 030aaf8733e03063daa3c730c5b258575b9386ba (diff) | |
download | tcl-03fe58895ff5d2fff94410b80ecf3fd7907b7948.zip tcl-03fe58895ff5d2fff94410b80ecf3fd7907b7948.tar.gz tcl-03fe58895ff5d2fff94410b80ecf3fd7907b7948.tar.bz2 |
TIP #323 IMPLEMENTATION (partial)
* doc/object.n: Revise standard oo method [my variable] to
* generic/tclOOBasic.c: accept zero variable names.
* tests/oo.test:
Diffstat (limited to 'doc')
-rw-r--r-- | doc/object.n | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/object.n b/doc/object.n index eec3219..47acd04 100644 --- a/doc/object.n +++ b/doc/object.n @@ -4,7 +4,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: object.n,v 1.2 2008/06/28 23:43:45 dkf Exp $ +'\" RCS: @(#) $Id: object.n,v 1.3 2008/09/26 20:16:39 dgp Exp $ '\" .so man.macros .TH object n 0.1 TclOO "TclOO Commands" @@ -63,7 +63,7 @@ by the \fBoo::object\fR class) generates a suitable error, detailing what methods the object supports given whether the object was invoked by its public name or through the \fBmy\fR command. .TP -\fIobj \fBvariable \fIvarName \fR?\fIvarName ...\fR? +\fIobj \fBvariable \fR?\fIvarName ...\fR? . This method arranges for each variable called \fIvarName\fR to be linked from the object \fIobj\fR's unique namespace into the caller's context. Thus, if it |