Unix and Linux Discussions Tagged with script |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
13,027 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
14,180 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
74,784 |
Shell Programming and Scripting |
|
|
|
3 |
11,125 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
26,138 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
74,317 |
Shell Programming and Scripting |
|
|
|
10 |
106,736 |
Shell Programming and Scripting |
|
|
|
4 |
14,820 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
13,209 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
18,183 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
13,847 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
9,951 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
73,096 |
Shell Programming and Scripting |
|
|
|
6 |
11,505 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
6,354 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
10,844 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
10,408 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
8,504 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
29,574 |
Answers to Frequently Asked Questions |
|
|
|
3 |
20,231 |
Answers to Frequently Asked Questions |
|
|
|
0 |
8,477 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
67,973 |
Shell Programming and Scripting |
|
|
|
1 |
9,962 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
71,577 |
Shell Programming and Scripting |
|
|
|
2 |
8,468 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
67,678 |
Shell Programming and Scripting |
|
|
|
2 |
66,311 |
Shell Programming and Scripting |
|
|
|
2 |
64,479 |
Shell Programming and Scripting |
|
|
|
8 |
10,647 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
16,930 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,741 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
69,586 |
Shell Programming and Scripting |
|
|
|
2 |
73,668 |
Shell Programming and Scripting |
|
|
|
0 |
10,652 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
5,565 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
5,199 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
5,036 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
70,172 |
Shell Programming and Scripting |
|
|
|
2 |
6,986 |
UNIX for Beginners Questions & Answers |
|
|
|
14 |
14,722 |
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)