diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2006-10-09 23:38:55 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2006-10-09 23:38:55 (GMT) |
commit | 1206d8aff615af8ee22e59b90e3f2d78318ea0ee (patch) | |
tree | d8056c99c5aecf67aea5af1c8a49686a0d3c3b89 /doc/UpVar.3 | |
parent | 25e6ad437c89b37b6e1b4c2283cc0eef267e9c06 (diff) | |
download | tcl-1206d8aff615af8ee22e59b90e3f2d78318ea0ee.zip tcl-1206d8aff615af8ee22e59b90e3f2d78318ea0ee.tar.gz tcl-1206d8aff615af8ee22e59b90e3f2d78318ea0ee.tar.bz2 |
* doc/UpVar.3: brough the docs in accordance to the code. Ever
since 8.0, Tcl_UpVar(2)? accepts TCL_NAMESPACE_ONLY as a flag
value, and var-3.4 tests for proper behaviour. The docs only
allowed 0 and TCL_GLOBAL_ONLY.
Diffstat (limited to 'doc/UpVar.3')
-rw-r--r-- | doc/UpVar.3 | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/UpVar.3 b/doc/UpVar.3 index 56aba45..01b0221 100644 --- a/doc/UpVar.3 +++ b/doc/UpVar.3 @@ -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: UpVar.3,v 1.10 2004/10/07 15:15:48 dkf Exp $ +'\" RCS: @(#) $Id: UpVar.3,v 1.11 2006/10/09 23:38:56 msofer Exp $ '\" .so man.macros .TH Tcl_UpVar 3 7.4 Tcl "Tcl Library Procedures" @@ -39,9 +39,10 @@ variable so that references to \fIdestName\fR refer to the other variable. Must not currently exist except as an upvar-ed variable. .AP int flags in -Either \fBTCL_GLOBAL_ONLY\fR or 0; if non-zero, then \fIdestName\fR is -a global variable; otherwise it is a local to the current procedure -(or global if no procedure is active). +One of \fBTCL_GLOBAL_ONLY\fR, \fBTCL_NAMESPACE_ONLY\fR or 0; if non-zero, +then \fIdestName\fR is a global or namespace variable; otherwise it is +local to the current procedure (or current namespace if no procedure is +active). .AP "const char" *name1 in First part of source variable's name (scalar name, or name of array without array index). |