diff options
author | dgp <dgp@users.sourceforge.net> | 2001-09-27 20:32:35 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-09-27 20:32:35 (GMT) |
commit | 0d06e77cfc052c284f91df079e7010a5dddc2aa5 (patch) | |
tree | 588b769345699efc0e369fb5169a677a6d08c569 /doc | |
parent | 8005a1ea0359cc32b78d70f77f91fbc6e73e58b5 (diff) | |
download | tcl-0d06e77cfc052c284f91df079e7010a5dddc2aa5.zip tcl-0d06e77cfc052c284f91df079e7010a5dddc2aa5.tar.gz tcl-0d06e77cfc052c284f91df079e7010a5dddc2aa5.tar.bz2 |
* Updated APIs in
generic/tclProc.c and generic/tclVar.c according to the guidelines
of TIP 27. [Patch 465442]
Diffstat (limited to 'doc')
-rw-r--r-- | doc/UpVar.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/UpVar.3 b/doc/UpVar.3 index b487d71..7eaf0d1 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.3 2000/04/14 23:01:55 hobbs Exp $ +'\" RCS: @(#) $Id: UpVar.3,v 1.4 2001/09/27 20:32:35 dgp Exp $ '\" .so man.macros .TH Tcl_UpVar 3 7.4 Tcl "Tcl Library Procedures" @@ -25,7 +25,7 @@ int .AS Tcl_VarTraceProc prevClientData .AP Tcl_Interp *interp in Interpreter containing variables; also used for error reporting. -.AP char *frameName in +.AP "CONST char" *frameName in Identifies the stack frame containing source variable. May have any of the forms accepted by the \fBupvar\fR command, such as \fB#0\fR or \fB1\fR. @@ -33,7 +33,7 @@ the \fBupvar\fR command, such as \fB#0\fR or \fB1\fR. Name of source variable, in the frame given by \fIframeName\fR. May refer to a scalar variable or to an array variable with a parenthesized index. -.AP char *destName in +.AP "CONST char" *destName in Name of destination variable, which is to be linked to source variable so that references to \fIdestName\fR refer to the other variable. Must not currently exist except as |