summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorescoffon <escoffon>1998-07-01 17:57:42 (GMT)
committerescoffon <escoffon>1998-07-01 17:57:42 (GMT)
commit14b51b9da52e85337007dfc59d89c8318c61ae16 (patch)
treed7261d46edda674c7f43399a187b5ce7c8ef45ab /generic
parentadd8d19062c50c606802d8381395f87319b03b10 (diff)
downloadtcl-14b51b9da52e85337007dfc59d89c8318c61ae16.zip
tcl-14b51b9da52e85337007dfc59d89c8318c61ae16.tar.gz
tcl-14b51b9da52e85337007dfc59d89c8318c61ae16.tar.bz2
- modified to use the AuxDataType setup.
Diffstat (limited to 'generic')
-rw-r--r--generic/tclExecute.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index 3a75d88..6749be8 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.c
@@ -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.
*
- * SCCS: @(#) tclExecute.c 1.102 97/11/06 11:36:35
+ * SCCS: %Z% $Id: tclExecute.c,v 1.3 1998/07/01 17:57:42 escoffon Exp $
*/
#include "tclInt.h"
@@ -449,8 +449,9 @@ TclCreateExecEnv(interp)
eePtr->stackEnd = (TCL_STACK_INITIAL_SIZE - 1);
if (!execInitialized) {
- InitByteCodeExecution(interp);
- execInitialized = 1;
+ TclInitAuxDataTypeTable();
+ InitByteCodeExecution(interp);
+ execInitialized = 1;
}
return eePtr;
@@ -504,6 +505,7 @@ void
TclFinalizeExecEnv()
{
execInitialized = 0;
+ TclFinalizeAuxDataTypeTable();
}
/*