summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2011-04-28 16:02:09 (GMT)
committerdgp <dgp@users.sourceforge.net>2011-04-28 16:02:09 (GMT)
commit0f60d55a98aa637a0b6ce1a6fabe8fdcd4df6eb4 (patch)
tree3d0a3378ba018b21c5ba3eca74a04c79da39a7a9 /generic
parent7fa90bb19565f59f0c918cac88e2a34bf51cd0fa (diff)
parent98b8497049cfeef401ed6514580249aac3383d4e (diff)
downloadtcl-0f60d55a98aa637a0b6ce1a6fabe8fdcd4df6eb4.zip
tcl-0f60d55a98aa637a0b6ce1a6fabe8fdcd4df6eb4.tar.gz
tcl-0f60d55a98aa637a0b6ce1a6fabe8fdcd4df6eb4.tar.bz2
More isspace() callers.
Diffstat (limited to 'generic')
-rw-r--r--generic/tclUtf.c2
-rw-r--r--generic/tclUtil.c10
2 files changed, 6 insertions, 6 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);
diff --git a/generic/tclUtil.c b/generic/tclUtil.c
index e8eee7a..fdfb190 100644
--- a/generic/tclUtil.c
+++ b/generic/tclUtil.c
@@ -2730,7 +2730,7 @@ TclGetIntForIndex(
* Leading whitespace is acceptable in an index.
*/
- while (length && isspace(UCHAR(*bytes))) { /* INTL: ISO space. */
+ while (length && TclIsSpaceProc(*bytes)) {
bytes++;
length--;
}
@@ -2743,7 +2743,7 @@ TclGetIntForIndex(
if ((savedOp != '+') && (savedOp != '-')) {
goto parseError;
}
- if (isspace(UCHAR(opPtr[1]))) {
+ if (TclIsSpaceProc(opPtr[1])) {
goto parseError;
}
*opPtr = '\0';
@@ -2890,7 +2890,7 @@ SetEndOffsetFromAny(
* after "end-" to Tcl_GetInt, then reverse for offset.
*/
- if (isspace(UCHAR(bytes[4]))) {
+ if (TclIsSpaceProc(bytes[4])) {
goto badIndexFormat;
}
if (Tcl_GetInt(interp, bytes+4, &offset) != TCL_OK) {
@@ -2957,7 +2957,7 @@ TclCheckBadOctal(
* zero. Try to generate a meaningful error message.
*/
- while (isspace(UCHAR(*p))) { /* INTL: ISO space. */
+ while (TclIsSpaceProc(*p)) {
p++;
}
if (*p == '+' || *p == '-') {
@@ -2970,7 +2970,7 @@ TclCheckBadOctal(
while (isdigit(UCHAR(*p))) { /* INTL: digit. */
p++;
}
- while (isspace(UCHAR(*p))) { /* INTL: ISO space. */
+ while (TclIsSpaceProc(*p)) {
p++;
}
if (*p == '\0') {