summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.h
diff options
context:
space:
mode:
authormsofer <msofer@noemail.net>2009-05-08 01:02:25 (GMT)
committermsofer <msofer@noemail.net>2009-05-08 01:02:25 (GMT)
commit0424066b3c6539cba9a575ae65150a1beaf87350 (patch)
tree3cdc92382395a57ab68cc6fdb3b197d39dc8000d /generic/tclCompile.h
parent716b215c8f69a69465687de18427cea56eff3682 (diff)
downloadtcl-0424066b3c6539cba9a575ae65150a1beaf87350.zip
tcl-0424066b3c6539cba9a575ae65150a1beaf87350.tar.gz
tcl-0424066b3c6539cba9a575ae65150a1beaf87350.tar.bz2
* generic/tclBasic.c: Let coroutines start with a much smaller
* generic/tclCompile.h: stack: 200 words (previously was 2000, * generic/tclExecute.c: the same as interps) FossilOrigin-Name: 50329efcfd99b9b0c682612aac913c63f27fad60
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r--generic/tclCompile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h
index fb5bdb9..a9b8545 100644
--- a/generic/tclCompile.h
+++ b/generic/tclCompile.h
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclCompile.h,v 1.115 2009/02/27 23:03:42 nijtmans Exp $
+ * RCS: @(#) $Id: tclCompile.h,v 1.116 2009/05/08 01:02:26 msofer Exp $
*/
#ifndef _TCLCOMPILATION
@@ -882,7 +882,7 @@ MODULE_SCOPE int TclCreateAuxData(ClientData clientData,
const AuxDataType *typePtr, CompileEnv *envPtr);
MODULE_SCOPE int TclCreateExceptRange(ExceptionRangeType type,
CompileEnv *envPtr);
-MODULE_SCOPE ExecEnv * TclCreateExecEnv(Tcl_Interp *interp);
+MODULE_SCOPE ExecEnv * TclCreateExecEnv(Tcl_Interp *interp, int size);
MODULE_SCOPE Tcl_Obj * TclCreateLiteral(Interp *iPtr, char *bytes,
int length, unsigned int hash, int *newPtr,
Namespace *nsPtr, int flags,