diff options
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r-- | generic/tclTest.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c index 515d922..c097363 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.130 2008/11/16 22:22:11 nijtmans Exp $ + * RCS: @(#) $Id: tclTest.c,v 1.131 2008/11/17 22:26:54 ferrieux Exp $ */ #define TCL_TEST @@ -3452,6 +3452,9 @@ 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; |