diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2005-01-19 23:15:07 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2005-01-19 23:15:07 (GMT) |
commit | 1077ec6723f685a6fecb9ed00bdcbbabdcb0e1b4 (patch) | |
tree | 0263ef643a8c8f6da633b1b0951e465627bf87e0 /generic/tcl.h | |
parent | ef78ca64ce6ba6a8786f083318fe536f2bd52925 (diff) | |
download | tcl-1077ec6723f685a6fecb9ed00bdcbbabdcb0e1b4.zip tcl-1077ec6723f685a6fecb9ed00bdcbbabdcb0e1b4.tar.gz tcl-1077ec6723f685a6fecb9ed00bdcbbabdcb0e1b4.tar.bz2 |
TIP#235 implementation (rename functions, add to stubs table, document)
Ensembles now have a C API. :^)
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index c183783..2a74307 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.193 2004/12/13 22:17:33 dgp Exp $ + * RCS: @(#) $Id: tcl.h,v 1.194 2005/01/19 23:15:14 dkf Exp $ */ #ifndef _TCL @@ -1053,6 +1053,13 @@ typedef struct Tcl_DString { #define TCL_TRACE_RESULT_OBJECT 0x10000 /* + * Flag values for ensemble commands. + */ +#define TCL_ENSEMBLE_PREFIX 0x02/* Flag value to say whether to allow + * unambiguous prefixes of commands or to + * require exact matches for command names. */ + +/* * Flag values passed to command-related procedures. */ |