diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2004-05-24 19:24:36 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2004-05-24 19:24:36 (GMT) |
commit | 12e64294fc3db4bba8ccacd7a75e769c759ca1ab (patch) | |
tree | eaa198999150d91de1ce67bfb3ab5a3eeb464dcb /doc/set.n | |
parent | af7d844c1eb713c44d97c7715a6ba37257973592 (diff) | |
download | tcl-12e64294fc3db4bba8ccacd7a75e769c759ca1ab.zip tcl-12e64294fc3db4bba8ccacd7a75e769c759ca1ab.tar.gz tcl-12e64294fc3db4bba8ccacd7a75e769c759ca1ab.tar.bz2 |
* doc/set.n: accurate description of name resolution process,
referring to namespace.n for details [Bug 959180]
Diffstat (limited to 'doc/set.n')
-rw-r--r-- | doc/set.n | 28 |
1 files changed, 13 insertions, 15 deletions
@@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: set.n,v 1.3 2000/09/07 14:27:51 poenitz Exp $ +'\" RCS: @(#) $Id: set.n,v 1.3.18.1 2004/05/24 19:24:37 msofer Exp $ '\" .so man.macros .TH set n "" Tcl "Tcl Built-In Commands" @@ -28,24 +28,22 @@ close parenthesis, then it refers to an array element: the characters before the first open parenthesis are the name of the array, and the characters between the parentheses are the index within the array. Otherwise \fIvarName\fR refers to a scalar variable. -Normally, \fIvarName\fR is unqualified -(does not include the names of any containing namespaces), -and the variable of that name in the current namespace is read or written. +.PP If \fIvarName\fR includes namespace qualifiers -(in the array name if it refers to an array element), -the variable in the specified namespace is read or written. +(in the array name if it refers to an array element), or if \fIvarName\fR +is unqualified (does not include the names of any containing namespaces) +but no procedure is active, +\fIvarName\fR refers to a namespace variable +resolved according to the rules described under \fBNAME RESOLUTION\fR in +the \fBnamespace\fR manual page. .PP -If no procedure is active, -then \fIvarName\fR refers to a namespace variable -(global variable if the current namespace is the global namespace). -If a procedure is active, then \fIvarName\fR refers to a parameter -or local variable of the procedure unless the \fBglobal\fR command -was invoked to declare \fIvarName\fR to be global, -or unless a \fBvariable\fR command -was invoked to declare \fIvarName\fR to be a namespace variable. +If a procedure is active and \fIvarName\fR is unqualified, then +\fIvarName\fR refers to a parameter or local variable of the procedure, +unless \fIvarName\fR was declared to resolve differently through one of the +\fBglobal\fR, \fBvariable\fR or \fBupvar\fR commands. .SH "SEE ALSO" -expr(n), proc(n), trace(n), unset(n) +expr(n), global(n), namespace(n), proc(n), trace(n), unset(n), upvar(n), variable(n) .SH KEYWORDS read, write, variable |