diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2009-03-21 12:24:48 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2009-03-21 12:24:48 (GMT) |
commit | 24ad5055202aab332c748c20e2bd0471e3aab234 (patch) | |
tree | bb3dee3248aee3a5159b68b525c8d1d998b8a2b2 /generic/tclInt.h | |
parent | 260a0df5b742697276b762bcddd34c141aed9942 (diff) | |
download | tcl-24ad5055202aab332c748c20e2bd0471e3aab234.zip tcl-24ad5055202aab332c748c20e2bd0471e3aab234.tar.gz tcl-24ad5055202aab332c748c20e2bd0471e3aab234.tar.bz2 |
* generic/tclBasic.c: fixed "leaks" in aliases, imports and
* generic/tclInt.h: ensembles. Only remaining known leak
* generic/tclInterp.c: is in ensemble unknown dispatch (as it
* generic/tclNamesp.c: not NR-enabled)
* tests/tailcall.test:
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 5c9e127..3028ff1 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.421 2009/03/21 11:46:10 msofer Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.422 2009/03/21 12:24:49 msofer Exp $ */ #ifndef _TCLINT @@ -2086,6 +2086,7 @@ typedef struct InterpList { #define TCL_ALLOW_EXCEPTIONS 4 #define TCL_EVAL_FILE 2 #define TCL_EVAL_CTX 8 +#define TCL_EVAL_REDIRECT 16 /* * Flag bits for Interp structures: |