diff options
author | ferrieux <ferrieux@users.sourceforge.net> | 2008-11-27 08:23:51 (GMT) |
---|---|---|
committer | ferrieux <ferrieux@users.sourceforge.net> | 2008-11-27 08:23:51 (GMT) |
commit | b3c483496b534112065b4bc5a60f2f4c85c85a03 (patch) | |
tree | 5ca6dc7e5906603f5aaa71449b054d51c5402db0 /generic/tclTest.c | |
parent | af5fd80ac65755d299d93e203c672f974594e42d (diff) | |
download | tcl-b3c483496b534112065b4bc5a60f2f4c85c85a03.zip tcl-b3c483496b534112065b4bc5a60f2f4c85c85a03.tar.gz tcl-b3c483496b534112065b4bc5a60f2f4c85c85a03.tar.bz2 |
Alternate fix for[Bug 2251175]: missing backslash substitution on expanded literals.
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r-- | generic/tclTest.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c index f93857a..3648f94 100644 --- a/generic/tclTest.c +++ b/generic/tclTest.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclTest.c,v 1.133 2008/11/26 23:44:59 nijtmans Exp $ + * RCS: @(#) $Id: tclTest.c,v 1.134 2008/11/27 08:23:51 ferrieux Exp $ */ #define TCL_TEST @@ -3447,9 +3447,6 @@ PrintParse( case TCL_TOKEN_TEXT: typeString = "text"; break; - case TCL_TOKEN_UNCOLLAPSED_TEXT: - typeString = "text-to-collapse"; - break; case TCL_TOKEN_BS: typeString = "backslash"; break; |