summaryrefslogtreecommitdiffstats
path: root/generic/regc_locale.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-10-09 01:48:31 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-10-09 01:48:31 (GMT)
commit40ea3f744aba1dd565983567a2cbcb2a43764e5f (patch)
treed1beba8c0233d9c74a0c2a6b90e69e959f14636c /generic/regc_locale.c
parent0c7b5c9b40a999fa24c9e186ebe869b62df7177e (diff)
parent2481948f74ede6ae6e6b5416710b235746663272 (diff)
downloadtcl-40ea3f744aba1dd565983567a2cbcb2a43764e5f.zip
tcl-40ea3f744aba1dd565983567a2cbcb2a43764e5f.tar.gz
tcl-40ea3f744aba1dd565983567a2cbcb2a43764e5f.tar.bz2
merge trunk
<p>Dont include U+0082 and U+0083 in the Tcl space set
Diffstat (limited to 'generic/regc_locale.c')
-rw-r--r--generic/regc_locale.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/regc_locale.c b/generic/regc_locale.c
index 8591311b..f3db471 100644
--- a/generic/regc_locale.c
+++ b/generic/regc_locale.c
@@ -360,8 +360,8 @@ static const crange spaceRangeTable[] = {
#define NUM_SPACE_RANGE (sizeof(spaceRangeTable)/sizeof(crange))
static const chr spaceCharTable[] = {
- 0x20, 0x82, 0x83, 0x85, 0xa0, 0x1680, 0x180e, 0x2028, 0x2029,
- 0x202f, 0x205f, 0x2060, 0x3000, 0xfeff
+ 0x20, 0x85, 0xa0, 0x1680, 0x180e, 0x2028, 0x2029, 0x202f, 0x205f,
+ 0x2060, 0x3000, 0xfeff
};
#define NUM_SPACE_CHAR (sizeof(spaceCharTable)/sizeof(chr))