summaryrefslogtreecommitdiffstats
path: root/generic/tclUtf.c
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2011-04-28 16:02:09 (GMT)
committerdgp <dgp@noemail.net>2011-04-28 16:02:09 (GMT)
commit0315fe7e50562f08cd3d8d63bc66af510559bdac (patch)
tree3d0a3378ba018b21c5ba3eca74a04c79da39a7a9 /generic/tclUtf.c
parent4790d8b304d62477e3b3a0e9e4ba0bb84496c066 (diff)
parent3337177e6e32b2612123d0d262e914561fa7b789 (diff)
downloadtcl-0315fe7e50562f08cd3d8d63bc66af510559bdac.zip
tcl-0315fe7e50562f08cd3d8d63bc66af510559bdac.tar.gz
tcl-0315fe7e50562f08cd3d8d63bc66af510559bdac.tar.bz2
More isspace() callers.
FossilOrigin-Name: 41acfe91eae4a425fa99d8d60b26e32d775a2bc6
Diffstat (limited to 'generic/tclUtf.c')
-rw-r--r--generic/tclUtf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclUtf.c b/generic/tclUtf.c
index efaccb7..ab26779 100644
--- a/generic/tclUtf.c
+++ b/generic/tclUtf.c
@@ -1527,7 +1527,7 @@ Tcl_UniCharIsSpace(
*/
if (ch < 0x80) {
- return isspace(UCHAR(ch)); /* INTL: ISO space */
+ return TclIsSpaceProc((char)ch);
} else {
category = (GetUniCharInfo(ch) & UNICODE_CATEGORY_MASK);
return ((SPACE_BITS >> category) & 1);