diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-04-17 10:22:58 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-04-17 10:22:58 (GMT) |
commit | c6dcb383b3da1763e3f325a5163925f49736195b (patch) | |
tree | 87de185d061a79857666b92e52691bb87f8829b4 /doc | |
parent | 0f21b35808fcc4be2b9f8a4952181db5f25d8283 (diff) | |
parent | 48f6d9f5e024f50dc3b87dfa5e4785901e0f5142 (diff) | |
download | tcl-c6dcb383b3da1763e3f325a5163925f49736195b.zip tcl-c6dcb383b3da1763e3f325a5163925f49736195b.tar.gz tcl-c6dcb383b3da1763e3f325a5163925f49736195b.tar.bz2 |
Deprecate Tcl_GetAlias()
Diffstat (limited to 'doc')
-rw-r--r-- | doc/CrtAlias.3 | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/CrtAlias.3 b/doc/CrtAlias.3 index 77a3bc2..724e16b 100644 --- a/doc/CrtAlias.3 +++ b/doc/CrtAlias.3 @@ -198,16 +198,17 @@ restrictions on how they are related. that it takes a vector of values to pass as additional arguments instead of a vector of strings. .PP -\fBTcl_GetAlias\fR returns information about an alias \fIaliasName\fR +\fBTcl_GetAliasObj\fR returns information in the form of a pointer to +a vector of Tcl_Obj structures about an alias \fIaliasName\fR in \fIinterp\fR. Any of the result fields can be \fBNULL\fR, in which case the corresponding datum is not returned. If a result field is non\-\fBNULL\fR, the address indicated is set to the corresponding datum. For example, if \fItargetNamePtr\fR is non\-\fBNULL\fR it is set to a pointer to the string containing the name of the target command. .PP -\fBTcl_GetAliasObj\fR is similar to \fBTcl_GetAlias\fR except that it -returns a pointer to a vector of Tcl_Obj structures instead of a vector of -strings. +\fBTcl_GetAlias\fR is similar to \fBTcl_GetAliasObj\fR except that it +returns a pointer to a vector of string instead of a vector of +Tcl_Obj structures. \fBTcl_GetAlias\fR is deprecated. .PP \fBTcl_ExposeCommand\fR moves the command named \fIhiddenCmdName\fR from the set of hidden commands to the set of exposed commands, putting |