diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2013-08-21 10:25:18 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2013-08-21 10:25:18 (GMT) |
commit | 3f61f168eb9d98c28312cdea25b214827c3692f2 (patch) | |
tree | 53c322fba847e22c281759b85bd9d72102dff076 /doc/CrtInterp.3 | |
parent | 9feda62fe0318715623c455abe7289bbb7dec34e (diff) | |
download | tcl-3f61f168eb9d98c28312cdea25b214827c3692f2.zip tcl-3f61f168eb9d98c28312cdea25b214827c3692f2.tar.gz tcl-3f61f168eb9d98c28312cdea25b214827c3692f2.tar.bz2 |
[3612422]: Refer to correct part of tclvars(n) rather than page itself.
Diffstat (limited to 'doc/CrtInterp.3')
-rw-r--r-- | doc/CrtInterp.3 | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/CrtInterp.3 b/doc/CrtInterp.3 index a248cf4..1156a20 100644 --- a/doc/CrtInterp.3 +++ b/doc/CrtInterp.3 @@ -41,8 +41,9 @@ may only be passed to Tcl routines called from the same thread as the original \fBTcl_CreateInterp\fR call. It is not safe for multiple threads to pass the same token to Tcl's routines. The new interpreter is initialized with the built-in Tcl commands -and with the variables documented in the \fBtclvars\fR manual page. To bind in -additional commands, call \fBTcl_CreateCommand\fR. +and with standard variables like \fBtcl_platform\fR and \fBenv\fR. To +bind in additional commands, call \fBTcl_CreateCommand\fR, and to +create additional variables, call \fBTcl_SetVar\fR. .PP \fBTcl_DeleteInterp\fR marks an interpreter as deleted; the interpreter will eventually be deleted when all calls to \fBTcl_Preserve\fR for it have @@ -144,6 +145,6 @@ should be used to determine when an interpreter is a candidate for deletion due to inactivity. .VE 8.6 .SH "SEE ALSO" -Tcl_Preserve(3), Tcl_Release(3), tclvars(n) +Tcl_Preserve(3), Tcl_Release(3) .SH KEYWORDS command, create, delete, interpreter |