summaryrefslogtreecommitdiffstats
path: root/generic/tclIntDecls.h
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2004-07-03 02:03:34 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2004-07-03 02:03:34 (GMT)
commita948104085f71c7726e9e831170e90b071cf2356 (patch)
treeebd68c71be3ed1e2241721518e2cd0de300e3f75 /generic/tclIntDecls.h
parent9b5d222f743985134ef42b6441545e60e0d64ef2 (diff)
downloadtcl-a948104085f71c7726e9e831170e90b071cf2356.zip
tcl-a948104085f71c7726e9e831170e90b071cf2356.tar.gz
tcl-a948104085f71c7726e9e831170e90b071cf2356.tar.bz2
Moved declaration of TclCompEvalObj() from tclCompile.h to the internal
stubs table, for compiler experimentation.
Diffstat (limited to 'generic/tclIntDecls.h')
-rw-r--r--generic/tclIntDecls.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/generic/tclIntDecls.h b/generic/tclIntDecls.h
index 216992b..796b790 100644
--- a/generic/tclIntDecls.h
+++ b/generic/tclIntDecls.h
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclIntDecls.h,v 1.65 2004/06/24 01:29:03 mistachkin Exp $
+ * RCS: @(#) $Id: tclIntDecls.h,v 1.66 2004/07/03 02:03:37 msofer Exp $
*/
#ifndef _TCLINTDECLS
@@ -1043,6 +1043,12 @@ EXTERN void TclFinalizeThreadStorageData _ANSI_ARGS_((
EXTERN void TclFinalizeThreadStorageDataKey _ANSI_ARGS_((
Tcl_ThreadDataKey * keyPtr));
#endif
+#ifndef TclCompEvalObj_TCL_DECLARED
+#define TclCompEvalObj_TCL_DECLARED
+/* 197 */
+EXTERN int TclCompEvalObj _ANSI_ARGS_((Tcl_Interp * interp,
+ Tcl_Obj * objPtr));
+#endif
typedef struct TclIntStubs {
int magic;
@@ -1260,6 +1266,7 @@ typedef struct TclIntStubs {
void (*tclFinalizeThreadStorage) _ANSI_ARGS_((void)); /* 194 */
void (*tclFinalizeThreadStorageData) _ANSI_ARGS_((Tcl_ThreadDataKey * keyPtr)); /* 195 */
void (*tclFinalizeThreadStorageDataKey) _ANSI_ARGS_((Tcl_ThreadDataKey * keyPtr)); /* 196 */
+ int (*tclCompEvalObj) _ANSI_ARGS_((Tcl_Interp * interp, Tcl_Obj * objPtr)); /* 197 */
} TclIntStubs;
#ifdef __cplusplus
@@ -1956,6 +1963,10 @@ extern TclIntStubs *tclIntStubsPtr;
#define TclFinalizeThreadStorageDataKey \
(tclIntStubsPtr->tclFinalizeThreadStorageDataKey) /* 196 */
#endif
+#ifndef TclCompEvalObj
+#define TclCompEvalObj \
+ (tclIntStubsPtr->tclCompEvalObj) /* 197 */
+#endif
#endif /* defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS) */