diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2010-01-21 17:23:49 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2010-01-21 17:23:49 (GMT) |
commit | 81ddbd4ea03baa8e607252b67b96e72038fd5c57 (patch) | |
tree | 9adf2b51c518fd83970c7611821260f56d8b6d98 /generic/tclCompile.h | |
parent | 1549d82a2029add6f62dde489d26a70b466f4fd0 (diff) | |
download | tcl-81ddbd4ea03baa8e607252b67b96e72038fd5c57.zip tcl-81ddbd4ea03baa8e607252b67b96e72038fd5c57.tar.gz tcl-81ddbd4ea03baa8e607252b67b96e72038fd5c57.tar.bz2 |
* generic/tclCompile.h: NRE-enable direct eval on BC spoilage
* generic/tclExecute.c: [Bug 2910748]
* tests/nre.test:
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index a41e094..3c514d0 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -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. * - * RCS: @(#) $Id: tclCompile.h,v 1.120 2010/01/03 20:29:11 msofer Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.121 2010/01/21 17:23:49 msofer Exp $ */ #ifndef _TCLCOMPILATION @@ -343,6 +343,8 @@ typedef struct CompileEnv { #define TCL_BYTECODE_RESOLVE_VARS 0x0002 +#define TCL_BYTECODE_RECOMPILE 0x0004 + typedef struct ByteCode { TclHandle interpHandle; /* Handle for interpreter containing the * compiled code. Commands and their compile |