diff options
| author | ferrieux@users.sourceforge.net <ferrieux> | 2008-11-17 22:26:53 (GMT) |
|---|---|---|
| committer | ferrieux@users.sourceforge.net <ferrieux> | 2008-11-17 22:26:53 (GMT) |
| commit | b778940a5873fac5b56a8c4a89608f2998a6a0dc (patch) | |
| tree | 2feeafa4d0aa3b3a07938ff5db6643a4ee5dc488 /generic/tcl.h | |
| parent | c0d5d77006952e7cfa1867460e115653d6e12f25 (diff) | |
| download | tcl-b778940a5873fac5b56a8c4a89608f2998a6a0dc.zip tcl-b778940a5873fac5b56a8c4a89608f2998a6a0dc.tar.gz tcl-b778940a5873fac5b56a8c4a89608f2998a6a0dc.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 |
