diff options
author | andreas_kupries <akupries@shaw.ca> | 2001-10-15 20:26:57 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2001-10-15 20:26:57 (GMT) |
commit | cf2f280c08cae3a18c4d328877f8fbf638de36bf (patch) | |
tree | a2743ac61001b229d56edcfeb695809658593efd /generic/tclStubInit.c | |
parent | d83f436f3c6920fd6099965bbf44f874a9310a12 (diff) | |
download | tcl-cf2f280c08cae3a18c4d328877f8fbf638de36bf.zip tcl-cf2f280c08cae3a18c4d328877f8fbf638de36bf.tar.gz tcl-cf2f280c08cae3a18c4d328877f8fbf638de36bf.tar.bz2 |
* generic/tclInt.decls (TclExpandCodeArray,TclGetInstructionTable):
Added to internal stubs table. Tclcompiler (Tclpro project)
needs them if used as loadable package under Windows. Changed
signatures. We don't want to describe compiler internal
structures in "tclInt.h".
* generic/tclCompile.h: S.a. Removed function declarations.
* generic/tclCompile.c: S.a. Adapted to changed signatures.
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r-- | generic/tclStubInit.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 2a1fbfb..6b59f55 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStubInit.c,v 1.61 2001/09/13 11:56:20 msofer Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.62 2001/10/15 20:26:58 andreas_kupries Exp $ */ #include "tclInt.h" @@ -242,7 +242,9 @@ TclIntStubs tclIntStubs = { NULL, /* 160 */ TclChannelTransform, /* 161 */ TclChannelEventScriptInvoker, /* 162 */ - TclpSetInitialEncodings, /* 163 */ + TclGetInstructionTable, /* 163 */ + TclExpandCodeArray, /* 164 */ + TclpSetInitialEncodings, /* 165 */ }; TclIntPlatStubs tclIntPlatStubs = { |