diff options
author | dgp <dgp@users.sourceforge.net> | 2003-03-19 20:07:12 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2003-03-19 20:07:12 (GMT) |
commit | 2f7a25d9e6cc43c401cbb12b0a35adca9ba526ca (patch) | |
tree | 3addbdb32429e38c6ee8c951201671d556977ae5 /doc/Eval.3 | |
parent | d9155272bb564f8042c5e7ff324807a01c31bc83 (diff) | |
download | tcl-2f7a25d9e6cc43c401cbb12b0a35adca9ba526ca.zip tcl-2f7a25d9e6cc43c401cbb12b0a35adca9ba526ca.tar.gz tcl-2f7a25d9e6cc43c401cbb12b0a35adca9ba526ca.tar.bz2 |
* doc/Eval.3 (Tcl_EvalObjEx): Corrected CONST and
* doc/ParseCmd.3 (Tcl_EvalTokensStandard): return type errors
in documentation. [Bug 683994]
Diffstat (limited to 'doc/Eval.3')
-rw-r--r-- | doc/Eval.3 | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -6,7 +6,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: Eval.3,v 1.12 2002/08/05 03:24:39 dgp Exp $ +'\" RCS: @(#) $Id: Eval.3,v 1.13 2003/03/19 20:07:16 dgp Exp $ '\" .so man.macros .TH Tcl_Eval 3 8.1 Tcl "Tcl Library Procedures" @@ -91,7 +91,8 @@ can be skipped if the object is evaluated again in the future. The return value from \fBTcl_EvalObjEx\fR (and all the other procedures described here) is a Tcl completion code with one of the values \fBTCL_OK\fR, \fBTCL_ERROR\fR, \fBTCL_RETURN\fR, -\fBTCL_BREAK\fR, or \fBTCL_CONTINUE\fR. +\fBTCL_BREAK\fR, or \fBTCL_CONTINUE\fR, or possibly some other +integer value originating in an extension. In addition, a result value or error message is left in \fIinterp\fR's result; it can be retrieved using \fBTcl_GetObjResult\fR. .PP |