diff options
author | dgp <dgp@users.sourceforge.net> | 2004-03-31 18:13:24 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-03-31 18:13:24 (GMT) |
commit | 34514ef72eb3cbedf0f2fc0fb52069dc84514945 (patch) | |
tree | 84e74662900efc4d4b4c0d03b909be7a9061adf9 | |
parent | 23a208a309fcf83386e13f35b4ff828972f2455b (diff) | |
download | tcl-34514ef72eb3cbedf0f2fc0fb52069dc84514945.zip tcl-34514ef72eb3cbedf0f2fc0fb52069dc84514945.tar.gz tcl-34514ef72eb3cbedf0f2fc0fb52069dc84514945.tar.bz2 |
Add comment for TCL_TOKEN_EXPAND_WORD flag
-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 |