diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2001-11-16 20:01:04 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2001-11-16 20:01:04 (GMT) |
commit | 39fcfea4a14df2f64af2f0b186157d5ec9c91030 (patch) | |
tree | 580baa5a7e9751093a2c83da278179e0781a1aa1 /generic/tclCompile.h | |
parent | 92abf41d3582dceca104a6177d650952a41bdd87 (diff) | |
download | tcl-39fcfea4a14df2f64af2f0b186157d5ec9c91030.zip tcl-39fcfea4a14df2f64af2f0b186157d5ec9c91030.tar.gz tcl-39fcfea4a14df2f64af2f0b186157d5ec9c91030.tar.bz2 |
Code reordering; execution levels made consistent [Bug 480896].
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 23aa9a6..203bdeb 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -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: tclCompile.h,v 1.18 2001/11/14 23:17:03 hobbs Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.19 2001/11/16 20:01:04 msofer Exp $ */ #ifndef _TCLCOMPILATION @@ -789,6 +789,9 @@ EXTERN void TclEmitForwardJump _ANSI_ARGS_((CompileEnv *envPtr, EXTERN ExceptionRange * TclGetExceptionRangeForPc _ANSI_ARGS_(( unsigned char *pc, int catchOnly, ByteCode* codePtr)); +EXTERN int TclEvalObjvInternal _ANSI_ARGS_((Tcl_Interp *interp, int objc, + Tcl_Obj *CONST objv[], char *command, int length, + int flags)); EXTERN int TclExecuteByteCode _ANSI_ARGS_((Tcl_Interp *interp, ByteCode *codePtr)); EXTERN void TclExpandJumpFixupArray _ANSI_ARGS_(( |