diff options
author | dkf <dkf@noemail.net> | 2004-09-18 17:01:01 (GMT) |
---|---|---|
committer | dkf <dkf@noemail.net> | 2004-09-18 17:01:01 (GMT) |
commit | a456eaa8a41f9d4c64f99bc835427017c15224a7 (patch) | |
tree | d0721a6b5b5206782155cb04dd3b28fd41bd8564 /doc/AllowExc.3 | |
parent | 5caca4abc826902d67902b0bb5841dc23e606573 (diff) | |
download | tcl-a456eaa8a41f9d4c64f99bc835427017c15224a7.zip tcl-a456eaa8a41f9d4c64f99bc835427017c15224a7.tar.gz tcl-a456eaa8a41f9d4c64f99bc835427017c15224a7.tar.bz2 |
More fixes from Mikhail Kolesnitchenko, and also standardize highlighting
of symbols like TCL_OK, TCL_ERROR, etc.
FossilOrigin-Name: 98776f715157a84ebbced1be85ea316525ae8c3f
Diffstat (limited to 'doc/AllowExc.3')
-rw-r--r-- | doc/AllowExc.3 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/AllowExc.3 b/doc/AllowExc.3 index 17d6ec0..e7eecfc 100644 --- a/doc/AllowExc.3 +++ b/doc/AllowExc.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. '\" -'\" RCS: @(#) $Id: AllowExc.3,v 1.3 2002/03/29 21:01:11 dgp Exp $ +'\" RCS: @(#) $Id: AllowExc.3,v 1.4 2004/09/18 17:01:04 dkf Exp $ '\" .so man.macros .TH Tcl_AllowExceptions 3 7.4 Tcl "Tcl Library Procedures" @@ -27,8 +27,8 @@ Interpreter in which script will be evaluated. .PP If a script is evaluated at top-level (i.e. no other scripts are pending evaluation when the script is invoked), and if the script -terminates with a completion code other than TCL_OK, TCL_ERROR -or TCL_RETURN, then Tcl normally converts this into a TCL_ERROR +terminates with a completion code other than \fBTCL_OK\fR, \fBTCL_ERROR\fR +or \fBTCL_RETURN\fR, then Tcl normally converts this into a \fBTCL_ERROR\fR return with an appropriate message. The particular script evaluation procedures of Tcl that act in the manner are \fBTcl_EvalObjEx\fR, \fBTcl_EvalObjv\fR, \fBTcl_Eval\fR, \fBTcl_EvalEx\fR, @@ -40,7 +40,7 @@ calling one of those a procedures, then arbitrary completion codes are permitted from the script, and they are returned without modification. This is useful in cases where the caller can deal with exceptions -such as TCL_BREAK or TCL_CONTINUE in a meaningful way. +such as \fBTCL_BREAK\fR or \fBTCL_CONTINUE\fR in a meaningful way. .SH KEYWORDS continue, break, exception, interpreter |