diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2001-11-19 14:35:54 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2001-11-19 14:35:54 (GMT) |
| commit | 7143f19a7e5afec41f44d75d91e1679de629a012 (patch) | |
| tree | 44763cdd57d94ad774bd93b56a8d0d53c0287675 /generic/tcl.h | |
| parent | 4803acf7b4b96e78ff6c936f2eef1e5a264a876f (diff) | |
| download | tcl-7143f19a7e5afec41f44d75d91e1679de629a012.zip tcl-7143f19a7e5afec41f44d75d91e1679de629a012.tar.gz tcl-7143f19a7e5afec41f44d75d91e1679de629a012.tar.bz2 | |
Changes due to TIP#68; memory handling in variable traces is now correct!
Diffstat (limited to 'generic/tcl.h')
| -rw-r--r-- | generic/tcl.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index cb5c9d5..f960f51 100644 --- a/generic/tcl.h +++ b/generic/tcl.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: tcl.h,v 1.104 2001/10/15 17:34:35 hobbs Exp $ + * RCS: @(#) $Id: tcl.h,v 1.105 2001/11/19 14:35:54 dkf Exp $ */ #ifndef _TCL @@ -942,6 +942,9 @@ typedef struct Tcl_DString { /* Required to support old variable/vdelete/vinfo traces */ #define TCL_TRACE_OLD_STYLE 0x1000 #endif +/* Indicate the semantics of the result of a trace */ +#define TCL_TRACE_RESULT_DYNAMIC 0x8000 +#define TCL_TRACE_RESULT_OBJECT 0x10000 /* * Flag values passed to command-related procedures. |
