summaryrefslogtreecommitdiffstats
path: root/doc/Eval.3
diff options
context:
space:
mode:
authorgahr@gahr.ch <gahr>2016-03-03 08:34:56 (GMT)
committergahr@gahr.ch <gahr>2016-03-03 08:34:56 (GMT)
commite3b58061d492c8d80e14654308769b7043be9b10 (patch)
tree7e5e124503a4afc925b79b149f6f07805d191b61 /doc/Eval.3
parentb5b506bfe9d7cb3ed7ce3cf1bb4905f055913044 (diff)
parent5124bc8aa150b1fba393e61541707d9a85571a37 (diff)
downloadtcl-bug_5f71353740.zip
tcl-bug_5f71353740.tar.gz
tcl-bug_5f71353740.tar.bz2
merge trunkbug_5f71353740
Diffstat (limited to 'doc/Eval.3')
-rw-r--r--doc/Eval.36
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/Eval.3 b/doc/Eval.3
index c104f7a..8661923 100644
--- a/doc/Eval.3
+++ b/doc/Eval.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.
-'\"
+'\"
.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.