diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2005-02-16 18:52:53 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2005-02-16 18:52:53 (GMT) |
commit | a277081417ca7ce77a114fabd3b2f658afb3005b (patch) | |
tree | 1344597392f61ec69478bd803c1e99f6328cbdc8 | |
parent | 862bc678a59d18ae7386cc88cef1909240641ba8 (diff) | |
download | tcl-a277081417ca7ce77a114fabd3b2f658afb3005b.zip tcl-a277081417ca7ce77a114fabd3b2f658afb3005b.tar.gz tcl-a277081417ca7ce77a114fabd3b2f658afb3005b.tar.bz2 |
* /doc/variable.n: fix for [Bug 1124160], variables are detected
by [info vars] but not by [info locals].
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | doc/variable.n | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2005-02-16 Miguel Sofer <msofer@users.sf.net> + + * /doc/variable.n: fix for [Bug 1124160], variables are detected + by [info vars] but not by [info locals]. + 2005-02-10 Jeff Hobbs <jeffh@ActiveState.com> * unix/Makefile.in: remove SHLIB_LD_FLAGS (only for AIX, inlined diff --git a/doc/variable.n b/doc/variable.n index 908e5ae..4e6a2a4 100644 --- a/doc/variable.n +++ b/doc/variable.n @@ -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: variable.n,v 1.4.18.1 2004/10/27 14:43:15 dkf Exp $ +'\" RCS: @(#) $Id: variable.n,v 1.4.18.2 2005/02/16 18:53:02 msofer Exp $ '\" .so man.macros .TH variable n 8.0 Tcl "Tcl Built-In Commands" @@ -43,7 +43,7 @@ command, but not to the \fBinfo exists\fR command. If the \fBvariable\fR command is executed inside a Tcl procedure, it creates local variables linked to the corresponding namespace variables (and therefore these -variables are listed by \fBinfo locals\fR.) +variables are listed by \fBinfo vars\fR.) In this way the \fBvariable\fR command resembles the \fBglobal\fR command, although the \fBglobal\fR command only links to variables in the global namespace. |