diff options
author | gahr <gahr@gahr.ch> | 2016-03-03 08:34:56 (GMT) |
---|---|---|
committer | gahr <gahr@gahr.ch> | 2016-03-03 08:34:56 (GMT) |
commit | 4b301d844892c52ec5fecce47f03c91a551639ca (patch) | |
tree | 7e5e124503a4afc925b79b149f6f07805d191b61 /doc/Eval.3 | |
parent | 46cb341dbc07abb1df54318ad9d55c41a5a68668 (diff) | |
parent | 8815f9f3c32c06e9f2d1d2b8ea69e1810988c5a4 (diff) | |
download | tcl-4b301d844892c52ec5fecce47f03c91a551639ca.zip tcl-4b301d844892c52ec5fecce47f03c91a551639ca.tar.gz tcl-4b301d844892c52ec5fecce47f03c91a551639ca.tar.bz2 |
merge trunk
Diffstat (limited to 'doc/Eval.3')
-rw-r--r-- | doc/Eval.3 | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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. -'\" +'\" .TH Tcl_Eval 3 8.1 Tcl "Tcl Library Procedures" .so man.macros .BS @@ -116,7 +116,7 @@ of the words for the Tcl command, one word in each value in a completion code and result just like \fBTcl_EvalObjEx\fR. The caller of \fBTcl_EvalObjv\fR has to manage the reference count of the elements of \fIobjv\fR, insuring that the values are valid until -\fBTcl_EvalObjv\fR returns. +\fBTcl_EvalObjv\fR returns. .PP \fBTcl_Eval\fR is similar to \fBTcl_EvalObjEx\fR except that the script to be executed is supplied as a string instead of a value and no compilation @@ -127,7 +127,7 @@ might be a UTF-8 special code. The string is parsed and executed directly (using \fBTcl_EvalObjv\fR) instead of compiling it and executing the bytecodes. In situations where it is known that the script will never be executed again, \fBTcl_Eval\fR may be faster than \fBTcl_EvalObjEx\fR. - \fBTcl_Eval\fR returns a completion code and result just like + \fBTcl_Eval\fR returns a completion code and result just like \fBTcl_EvalObjEx\fR. Note: for backward compatibility with versions before Tcl 8.0, \fBTcl_Eval\fR copies the value result in \fIinterp\fR to \fIinterp->result\fR (use is deprecated) where it can be accessed directly. |