Unix and Linux Discussions Tagged with script |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
13,290 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
14,510 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
75,264 |
Shell Programming and Scripting |
|
|
|
3 |
11,208 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
26,482 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
74,711 |
Shell Programming and Scripting |
|
|
|
10 |
107,159 |
Shell Programming and Scripting |
|
|
|
4 |
15,158 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
13,494 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
18,532 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
14,159 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
10,164 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
73,592 |
Shell Programming and Scripting |
|
|
|
6 |
11,682 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
6,496 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
11,025 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
10,689 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
8,670 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
31,036 |
Answers to Frequently Asked Questions |
|
|
|
3 |
20,499 |
Answers to Frequently Asked Questions |
|
|
|
0 |
8,656 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
68,376 |
Shell Programming and Scripting |
|
|
|
1 |
10,097 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
72,033 |
Shell Programming and Scripting |
|
|
|
2 |
8,655 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
68,120 |
Shell Programming and Scripting |
|
|
|
2 |
66,740 |
Shell Programming and Scripting |
|
|
|
2 |
64,929 |
Shell Programming and Scripting |
|
|
|
8 |
10,926 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
17,305 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,901 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
69,838 |
Shell Programming and Scripting |
|
|
|
2 |
74,059 |
Shell Programming and Scripting |
|
|
|
0 |
10,879 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
5,705 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
5,348 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
5,180 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
70,584 |
Shell Programming and Scripting |
|
|
|
2 |
7,171 |
UNIX for Beginners Questions & Answers |
|
|
|
14 |
15,071 |
UNIX for Beginners Questions & Answers |
Tcl_AllowExceptions(3) Tcl Library Procedures Tcl_AllowExceptions(3)
__________________________________________________________________________________________________________________________________________________
NAME
Tcl_AllowExceptions - allow all exceptions in next script evaluation
SYNOPSIS
#include <tcl.h>
Tcl_AllowExceptions(interp)
ARGUMENTS
Tcl_Interp *interp (in) Interpreter in which script will be evaluated.
_________________________________________________________________
DESCRIPTION
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 termi-
nates with a completion code other than TCL_OK, TCL_ERROR or TCL_RETURN, then Tcl normally converts this into a TCL_ERROR return with an
appropriate message. The particular script evaluation procedures of Tcl that act in the manner are Tcl_EvalObjEx, Tcl_EvalObjv, Tcl_Eval,
Tcl_EvalEx, Tcl_GlobalEval, Tcl_GlobalEvalObj, Tcl_VarEval and Tcl_VarEvalVA.
However, if Tcl_AllowExceptions is invoked immediately before calling one of those a procedures, then arbitrary completion codes are per-
mitted 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.
KEYWORDS
continue, break, exception, interpreter
Tcl 7.4 Tcl_AllowExceptions(3)