summaryrefslogtreecommitdiffstats
path: root/doc/Eval.3
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2011-05-05 15:32:36 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2011-05-05 15:32:36 (GMT)
commitcfa1a4e5befb266efc87a6521a93b815d2bb6a47 (patch)
tree487479cba2ca2a284871d91a5a738049135a61cb /doc/Eval.3
parent76f0e86699eb95b37863d57c7915dec2f180aa5b (diff)
downloadtcl-cfa1a4e5befb266efc87a6521a93b815d2bb6a47.zip
tcl-cfa1a4e5befb266efc87a6521a93b815d2bb6a47.tar.gz
tcl-cfa1a4e5befb266efc87a6521a93b815d2bb6a47.tar.bz2
Fix typo spotted by Emiliano Gavilan.
Diffstat (limited to 'doc/Eval.3')
-rw-r--r--doc/Eval.35
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/Eval.3 b/doc/Eval.3
index f232cad..b776e93 100644
--- a/doc/Eval.3
+++ b/doc/Eval.3
@@ -159,10 +159,12 @@ instead of taking a variable number of arguments it takes an argument
list. Like \fBTcl_VarEval\fR, \fBTcl_VarEvalVA\fR is deprecated.
.SH "FLAG BITS"
+.PP
Any ORed combination of the following values may be used for the
\fIflags\fR argument to procedures such as \fBTcl_EvalObjEx\fR:
.TP 23
\fBTCL_EVAL_DIRECT\fR
+.
This flag is only used by \fBTcl_EvalObjEx\fR; it is ignored by
other procedures. If this flag bit is set, the script is not
compiled to bytecodes; instead it is executed directly
@@ -173,10 +175,11 @@ bytecodes will not be reused in a future execution. In this case,
it is faster to execute the script directly.
.TP 23
\fBTCL_EVAL_GLOBAL\fR
+.
If this flag is set, the script is processed at global level. This
means that it is evaluated in the global namespace and its variable
context consists of global variables only (it ignores any Tcl
-procedures at are active).
+procedures that are active).
.SH "MISCELLANEOUS DETAILS"
.PP