diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-01-26 17:32:49 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-01-26 17:32:49 (GMT) |
commit | c1452de7e5857e14cb7c6a92518721637a0dc590 (patch) | |
tree | be466aebb5d2768ca30cff1773f92e6775ea9884 /compat | |
parent | 918813166cac0372ced8a1e2e8f4cf8192a169dd (diff) | |
parent | a6393381ec5d16f9f82c4b8ee992bedaa7c1e4a9 (diff) | |
download | tcl-c1452de7e5857e14cb7c6a92518721637a0dc590.zip tcl-c1452de7e5857e14cb7c6a92518721637a0dc590.tar.gz tcl-c1452de7e5857e14cb7c6a92518721637a0dc590.tar.bz2 |
Merge 8.7
Diffstat (limited to 'compat')
-rw-r--r-- | compat/strtol.c | 2 | ||||
-rw-r--r-- | compat/strtoul.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compat/strtol.c b/compat/strtol.c index 811006a..b7f6919 100644 --- a/compat/strtol.c +++ b/compat/strtol.c @@ -53,7 +53,7 @@ strtol( */ p = string; - while (isspace(UCHAR(*p))) { + while (TclIsSpaceProc(*p)) { p += 1; } diff --git a/compat/strtoul.c b/compat/strtoul.c index 15587f1..e37eb05 100644 --- a/compat/strtoul.c +++ b/compat/strtoul.c @@ -74,7 +74,7 @@ strtoul( */ p = string; - while (isspace(UCHAR(*p))) { + while (TclIsSpaceProc(*p)) { p += 1; } if (*p == '-') { |