summaryrefslogtreecommitdiffstats
path: root/generic/tclUtf.c
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2011-04-28 16:02:09 (GMT)
committerdgp@users.sourceforge.net <dgp>2011-04-28 16:02:09 (GMT)
commit67e7ab87de19d14069d0e24aae20cea3afec4f2b (patch)
tree3d0a3378ba018b21c5ba3eca74a04c79da39a7a9 /generic/tclUtf.c
parenta1ea0a89f05c892beefeb7dd7641b397105b6ed3 (diff)
parent4e2f284b2b1c8d00015ad6c473921326444f7967 (diff)
downloadtcl-67e7ab87de19d14069d0e24aae20cea3afec4f2b.zip
tcl-67e7ab87de19d14069d0e24aae20cea3afec4f2b.tar.gz
tcl-67e7ab87de19d14069d0e24aae20cea3afec4f2b.tar.bz2
More isspace() callers.
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);