diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2008-08-21 21:01:17 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2008-08-21 21:01:17 (GMT) |
commit | d9990b25f1fc6db099c55ae7ce637230bc41d02c (patch) | |
tree | 2b215719a85e8c5af53cf2ee862bff6fdbf60993 /generic/tclInt.h | |
parent | 0aefd12ecc49b90bb53275239ab60e815c7e2ad5 (diff) | |
download | tcl-d9990b25f1fc6db099c55ae7ce637230bc41d02c.zip tcl-d9990b25f1fc6db099c55ae7ce637230bc41d02c.tar.gz tcl-d9990b25f1fc6db099c55ae7ce637230bc41d02c.tar.bz2 |
* generic/tclBasic.c: Fix the cmdFrame level count in
* generic/tclCmdIL.c: coroutines. Fix small bug on coroutine
* generic/tclInt.h: rewind.
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 811278b..1b2014b 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.392 2008/08/20 15:41:24 dkf Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.393 2008/08/21 21:01:25 msofer Exp $ */ #ifndef _TCLINT @@ -1347,6 +1347,7 @@ typedef struct CoroutineData { CorContext caller; CorContext running; CorContext base; + int levelOffset; int *stackLevel; } CoroutineData; |