diff options
author | andreas_kupries <akupries@shaw.ca> | 2010-02-02 20:51:46 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2010-02-02 20:51:46 (GMT) |
commit | a5d1f04218f4616cb7cb69db45ea255a0ffed1fc (patch) | |
tree | 3ca1c2995c8b6641353777becad5e1ee42dd781a /generic/tclCompile.h | |
parent | f887621bde119a1d5212ed918da217dd3aef2588 (diff) | |
download | tcl-a5d1f04218f4616cb7cb69db45ea255a0ffed1fc.zip tcl-a5d1f04218f4616cb7cb69db45ea255a0ffed1fc.tar.gz tcl-a5d1f04218f4616cb7cb69db45ea255a0ffed1fc.tar.bz2 |
* generic/tclCompile.c: [Bug 2933089]: A literal sharing problem with
* generic/tclCompile.h: 'info frame' affects not only 8.6 but 8.5 as
* generic/tclExecute.h: well. Backported the fix done in 8.6, without
* tests/info.test: changes. New testcase info-39.1.
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index a86e8f1..cb036c5 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.90.2.7 2009/08/25 21:01:05 andreas_kupries Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.90.2.8 2010/02/02 20:51:47 andreas_kupries Exp $ */ #ifndef _TCLCOMPILATION @@ -139,6 +139,10 @@ typedef struct ECL { typedef struct ExtCmdLoc { int type; /* Context type. */ + int start; /* Starting line for compiled script. Needed + * for the extended recompile check in + * TclCompEvalObj. */ + Tcl_Obj *path; /* Path of the sourced file the command is * in. */ ECL *loc; /* Command word locations (lines). */ |