Unix and Linux Discussions Tagged with script |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
5,515 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,464 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
11,099 |
Shell Programming and Scripting |
|
|
|
3 |
4,362 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
17,851 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
18,512 |
Shell Programming and Scripting |
|
|
|
10 |
10,551 |
Shell Programming and Scripting |
|
|
|
4 |
4,993 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
5,521 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
7,104 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
5,138 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,124 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
6,938 |
Shell Programming and Scripting |
|
|
|
6 |
3,799 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,401 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,586 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
4,526 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,795 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
9,674 |
Answers to Frequently Asked Questions |
|
|
|
3 |
9,221 |
Answers to Frequently Asked Questions |
|
|
|
0 |
4,027 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
6,464 |
Shell Programming and Scripting |
|
|
|
1 |
5,368 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
7,303 |
Shell Programming and Scripting |
|
|
|
2 |
4,276 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
10,418 |
Shell Programming and Scripting |
|
|
|
2 |
12,638 |
Shell Programming and Scripting |
|
|
|
2 |
10,648 |
Shell Programming and Scripting |
|
|
|
8 |
3,227 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
5,032 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,020 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
11,882 |
Shell Programming and Scripting |
|
|
|
2 |
13,810 |
Shell Programming and Scripting |
|
|
|
0 |
3,912 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,016 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,602 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,739 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
13,911 |
Shell Programming and Scripting |
|
|
|
2 |
3,360 |
UNIX for Beginners Questions & Answers |
|
|
|
14 |
4,311 |
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)