diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2007-06-14 21:02:17 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2007-06-14 21:02:17 (GMT) |
commit | 86cf6a1ccd20d49d9898336b899d3a335a2b41d2 (patch) | |
tree | e07818ee6936b7b5d9b44fd89a251a9c56f45ac1 /generic/tclInt.h | |
parent | f2024f79b6706bbd501492326da4833fe642d27f (diff) | |
download | tcl-86cf6a1ccd20d49d9898336b899d3a335a2b41d2.zip tcl-86cf6a1ccd20d49d9898336b899d3a335a2b41d2.tar.gz tcl-86cf6a1ccd20d49d9898336b899d3a335a2b41d2.tar.bz2 |
* generic/tclInt.decls: Modif to the internals of
* generic/tclInt.h: TclObjInterpProc to reduce stack
* generic/tclIntDecls.h: consumption and improve task
* generic/tclProc.c: separation. Changes the interface of
TclObjInterpProcCore (patching TclOO simultaneously).
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 64d81dd..8ad0c0b 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -12,7 +12,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.318 2007/06/12 12:34:00 dkf Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.319 2007/06/14 21:02:19 msofer Exp $ */ #ifndef _TCLINT @@ -954,7 +954,8 @@ typedef struct CallFrame { * specify. */ } CallFrame; -#define FRAME_IS_PROC 0x1 +#define FRAME_IS_PROC 0x1 +#define FRAME_IS_LAMBDA 0x2 /* * TIP #280 |