diff options
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index f549b22..be676f6 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.175 2004/03/26 19:47:28 dgp Exp $ + * RCS: @(#) $Id: tcl.h,v 1.176 2004/03/31 18:13:24 dgp Exp $ */ #ifndef _TCL @@ -2055,6 +2055,11 @@ typedef struct Tcl_Token { * more TCL_TOKEN_SUB_EXPR tokens for the * operator's operands. NumComponents is * always 0. + * TCL_TOKEN_EXPAND_WORD - This token is just like TCL_TOKEN_WORD + * except that it marks a word that began with + * the literal character prefix "{expand}". This + * word is marked to be expanded - that is, broken + * into words after substitution is complete. */ #define TCL_TOKEN_WORD 1 #define TCL_TOKEN_SIMPLE_WORD 2 |