diff options
author | dgp <dgp@users.sourceforge.net> | 2007-06-05 17:57:05 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-06-05 17:57:05 (GMT) |
commit | 0ce2a2cb2fb98447e3060196f2415dd267330e0d (patch) | |
tree | baea8961dd7792cf7300ab1799771f4ebdc7ad72 /generic/tclInt.h | |
parent | 68919c24042c4dd2b585f557d98d6bea70fa1cf4 (diff) | |
download | tcl-0ce2a2cb2fb98447e3060196f2415dd267330e0d.zip tcl-0ce2a2cb2fb98447e3060196f2415dd267330e0d.tar.gz tcl-0ce2a2cb2fb98447e3060196f2415dd267330e0d.tar.bz2 |
* generic/tclBasic.c: Added interp flag value ERR_LEGACY_COPY to
* generic/tclInt.h: control the timing with which the global
* generic/tclNamesp.c: variables ::errorCode and ::errorInfo get
* generic/tclProc.c: updated after an error. This keeps more
* generic/tclResult.c: precise compatibility with Tcl 8.4.
* tests/result.test (result-6.2): [Bug 1649062]
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index b9c8f3a..ba41155 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -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.h,v 1.312 2007/06/05 17:50:56 msofer Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.313 2007/06/05 17:57:07 dgp Exp $ */ #ifndef _TCLINT @@ -1848,6 +1848,7 @@ typedef struct InterpList { #define SAFE_INTERP 0x80 #define INTERP_TRACE_IN_PROGRESS 0x200 #define INTERP_ALTERNATE_WRONG_ARGS 0x400 +#define ERR_LEGACY_COPY 0x800 /* * Maximum number of levels of nesting permitted in Tcl commands (used to |