summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authorferrieux@users.sourceforge.net <ferrieux>2010-04-05 19:44:44 (GMT)
committerferrieux@users.sourceforge.net <ferrieux>2010-04-05 19:44:44 (GMT)
commit9905f8df9de6e3462a75138b08306be93e0f456f (patch)
tree135ba162a555a418d3cc3bc02fcec17df7d203e2 /generic/tclInt.h
parentd3f5648179e3d8baf644fe7d0a67d89e5ad27c41 (diff)
downloadtcl-9905f8df9de6e3462a75138b08306be93e0f456f.zip
tcl-9905f8df9de6e3462a75138b08306be93e0f456f.tar.gz
tcl-9905f8df9de6e3462a75138b08306be93e0f456f.tar.bz2
TIP #348 IMPLEMENTATION - Substituted error stack
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 6c70fd2..047a823 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -15,7 +15,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclInt.h,v 1.467 2010/04/02 21:21:06 kennykb Exp $
+ * RCS: @(#) $Id: tclInt.h,v 1.468 2010/04/05 19:44:45 ferrieux Exp $
*/
#ifndef _TCLINT
@@ -1984,6 +1984,10 @@ typedef struct Interp {
Tcl_Obj *eiVar; /* cached ref to ::errorInfo variable. */
Tcl_Obj *errorCode; /* errorCode value (now as a Tcl_Obj). */
Tcl_Obj *ecVar; /* cached ref to ::errorInfo variable. */
+ Tcl_Obj *errorStack; /* [info errorstack] value (as a Tcl_Obj). */
+ Tcl_Obj *upLiteral; /* "UP" literal for [info errorstack] */
+ Tcl_Obj *callLiteral; /* "CALL" literal for [info errorstack] */
+ int resetErrorStack; /* controls cleaning up of ::errorStack */
int returnLevel; /* [return -level] parameter. */
/*