summaryrefslogtreecommitdiffstats
path: root/generic/tclCmdMZ.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-10-16 14:25:18 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-10-16 14:25:18 (GMT)
commit07c7107940a7846e7eb6636927feb79f31e94659 (patch)
tree127cbe686f582741a34b2fd150fd6e097347270d /generic/tclCmdMZ.c
parent87086952e1b827b071a8e5454895c795bb71ee04 (diff)
downloadtcl-07c7107940a7846e7eb6636927feb79f31e94659.zip
tcl-07c7107940a7846e7eb6636927feb79f31e94659.tar.gz
tcl-07c7107940a7846e7eb6636927feb79f31e94659.tar.bz2
Remove two characters, zero width non-joiner (U+200c) and zero width joiner (U+200d),
which were finally left out of TIP #413
Diffstat (limited to 'generic/tclCmdMZ.c')
-rw-r--r--generic/tclCmdMZ.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/generic/tclCmdMZ.c b/generic/tclCmdMZ.c
index d24b872..88b3420 100644
--- a/generic/tclCmdMZ.c
+++ b/generic/tclCmdMZ.c
@@ -34,7 +34,7 @@ static int UniCharIsHexDigit(int character);
/*
* Default set of characters to trim in [string trim] and friends. This is a
- * UTF-8 literal string containing all Unicode space characters [TIP #318]
+ * UTF-8 literal string containing all Unicode space characters [TIP #413]
*/
#define DEFAULT_TRIM_SET \
@@ -56,8 +56,6 @@ static int UniCharIsHexDigit(int character);
"\xe2\x80\x89" /* thin space (U+2009) */\
"\xe2\x80\x8a" /* hair space (U+200a) */\
"\xe2\x80\x8b" /* zero width space (U+200b) */\
- "\xe2\x80\x8c" /* zero width non-joiner (U+200c) */\
- "\xe2\x80\x8d" /* zero width joiner (U+200d) */\
"\xe2\x80\xa8" /* line separator (U+2028) */\
"\xe2\x80\xa9" /* paragraph separator (U+2029) */\
"\xe2\x80\xaf" /* narrow no-break space (U+202f) */\