diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2004-07-03 02:03:34 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2004-07-03 02:03:34 (GMT) |
commit | a948104085f71c7726e9e831170e90b071cf2356 (patch) | |
tree | ebd68c71be3ed1e2241721518e2cd0de300e3f75 /generic/tclInt.decls | |
parent | 9b5d222f743985134ef42b6441545e60e0d64ef2 (diff) | |
download | tcl-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/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index 0f82b17..d8e3e1f 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -12,7 +12,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.decls,v 1.75 2004/06/24 01:29:02 mistachkin Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.76 2004/07/03 02:03:37 msofer Exp $ library tcl @@ -787,6 +787,14 @@ declare 196 generic { void TclFinalizeThreadStorageDataKey(Tcl_ThreadDataKey *keyPtr) } +# +# Added in tcl8.5a5 for compiler/executor experimentation. +# +declare 197 generic { + int TclCompEvalObj (Tcl_Interp *interp, Tcl_Obj *objPtr) +} + + ############################################################################## # Define the platform specific internal Tcl interface. These functions are |