diff options
| author | Miguel Sofer <miguel.sofer@gmail.com> | 2002-07-29 00:25:48 (GMT) |
|---|---|---|
| committer | Miguel Sofer <miguel.sofer@gmail.com> | 2002-07-29 00:25:48 (GMT) |
| commit | 151ce7f9fd56ab53b0e8822d312708c22b4d7aaf (patch) | |
| tree | 208b34b62a4fbd5ad2e737a2db9c09e81c11e01d /generic/tcl.h | |
| parent | 40e7384922e37259abf34bae773b6b6f1a0c149c (diff) | |
| download | tcl-151ce7f9fd56ab53b0e8822d312708c22b4d7aaf.zip tcl-151ce7f9fd56ab53b0e8822d312708c22b4d7aaf.tar.gz tcl-151ce7f9fd56ab53b0e8822d312708c22b4d7aaf.tar.bz2 | |
Fix for [Bug 582522] - aliases now fire execution traces on the target
command. Optimisation of alias invocation.
Diffstat (limited to 'generic/tcl.h')
| -rw-r--r-- | generic/tcl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 4fc6592..d090013 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tcl.h,v 1.136 2002/07/22 16:51:47 vincentdarley Exp $ + * RCS: @(#) $Id: tcl.h,v 1.137 2002/07/29 00:25:49 msofer Exp $ */ #ifndef _TCL @@ -984,6 +984,7 @@ typedef struct Tcl_DString { #define TCL_NO_EVAL 0x10000 #define TCL_EVAL_GLOBAL 0x20000 #define TCL_EVAL_DIRECT 0x40000 +#define TCL_EVAL_NO_TRACEBACK 0x80000 /* * Special freeProc values that may be passed to Tcl_SetResult (see |
