diff options
author | ferrieux <ferrieux@users.sourceforge.net> | 2008-11-17 22:26:53 (GMT) |
---|---|---|
committer | ferrieux <ferrieux@users.sourceforge.net> | 2008-11-17 22:26:53 (GMT) |
commit | dee5b7a791b4b64cdfe7ae6c9981aff8d85848d5 (patch) | |
tree | 2feeafa4d0aa3b3a07938ff5db6643a4ee5dc488 /generic/tcl.h | |
parent | db2e6bf825388498ab5798bbeca26fce23d4286f (diff) | |
download | tcl-dee5b7a791b4b64cdfe7ae6c9981aff8d85848d5.zip tcl-dee5b7a791b4b64cdfe7ae6c9981aff8d85848d5.tar.gz tcl-dee5b7a791b4b64cdfe7ae6c9981aff8d85848d5.tar.bz2 |
Fix [Bug 2251175]: missing backslash substitution on expanded literals.
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 b418aa7..e20964c 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.277 2008/10/22 20:23:59 nijtmans Exp $ + * RCS: @(#) $Id: tcl.h,v 1.278 2008/11/17 22:26:53 ferrieux Exp $ */ #ifndef _TCL @@ -2004,6 +2004,7 @@ typedef struct Tcl_Token { #define TCL_TOKEN_SUB_EXPR 64 #define TCL_TOKEN_OPERATOR 128 #define TCL_TOKEN_EXPAND_WORD 256 +#define TCL_TOKEN_UNCOLLAPSED_TEXT 512 /* * Parsing error types. On any parsing error, one of these values will be |