summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2002-03-20 22:47:36 (GMT)
committerdgp <dgp@users.sourceforge.net>2002-03-20 22:47:36 (GMT)
commit8c538d2de4c21bd7ae487e0432aa39d4ae2b9ed1 (patch)
tree8f368f02d83a51268df54df95963ddc703bfa767 /doc
parente51eaf9011544d3ccb2756c1e458cc42aeddd877 (diff)
downloadtcl-8c538d2de4c21bd7ae487e0432aa39d4ae2b9ed1.zip
tcl-8c538d2de4c21bd7ae487e0432aa39d4ae2b9ed1.tar.gz
tcl-8c538d2de4c21bd7ae487e0432aa39d4ae2b9ed1.tar.bz2
* Updated interfaces of generic/tclVar.c according
to TIP 27. In particular, the "part2" arguments were CONSTified.
Diffstat (limited to 'doc')
-rw-r--r--doc/SetVar.34
-rw-r--r--doc/TraceVar.34
-rw-r--r--doc/UpVar.34
3 files changed, 6 insertions, 6 deletions
diff --git a/doc/SetVar.3 b/doc/SetVar.3
index 6f610c1..72b373f 100644
--- a/doc/SetVar.3
+++ b/doc/SetVar.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: SetVar.3,v 1.4 2002/01/25 20:40:55 dgp Exp $
+'\" RCS: @(#) $Id: SetVar.3,v 1.5 2002/03/20 22:47:36 dgp Exp $
'\"
.so man.macros
.TH Tcl_SetVar 3 8.1 Tcl "Tcl Library Procedures"
@@ -59,7 +59,7 @@ or (if \fIname2\fR is NULL) either the name of a scalar variable
or a complete name including both variable name and index.
May include \fB::\fR namespace qualifiers
to specify a variable in a particular namespace.
-.AP char *name2 in
+.AP CONST char *name2 in
If non-NULL, gives name of element within array; in this
case \fIname1\fR must refer to an array variable.
.AP Tcl_Obj *newValuePtr in
diff --git a/doc/TraceVar.3 b/doc/TraceVar.3
index b8c5efb..ffd0f52 100644
--- a/doc/TraceVar.3
+++ b/doc/TraceVar.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: TraceVar.3,v 1.5 2001/11/19 14:35:54 dkf Exp $
+'\" RCS: @(#) $Id: TraceVar.3,v 1.6 2002/03/20 22:47:36 dgp Exp $
'\"
.so man.macros
.TH Tcl_TraceVar 3 7.4 Tcl "Tcl Library Procedures"
@@ -54,7 +54,7 @@ Procedure to invoke whenever one of the traced operations occurs.
Arbitrary one-word value to pass to \fIproc\fR.
.AP char *name1 in
Name of scalar or array variable (without array index).
-.AP char *name2 in
+.AP CONST char *name2 in
For a trace on an element of an array, gives the index of the
element. For traces on scalar variables or on whole arrays,
is NULL.
diff --git a/doc/UpVar.3 b/doc/UpVar.3
index 7eaf0d1..c8df47b 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.4 2001/09/27 20:32:35 dgp Exp $
+'\" RCS: @(#) $Id: UpVar.3,v 1.5 2002/03/20 22:47:36 dgp Exp $
'\"
.so man.macros
.TH Tcl_UpVar 3 7.4 Tcl "Tcl Library Procedures"
@@ -45,7 +45,7 @@ a global variable; otherwise it is a local to the current procedure
.AP char *name1 in
First part of source variable's name (scalar name, or name of array
without array index).
-.AP char *name2 in
+.AP CONST char *name2 in
If source variable is an element of an array, gives the index of the element.
For scalar source variables, is NULL.
.BE