summaryrefslogtreecommitdiffstats
path: root/unix
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 /unix
parenta1ea0a89f05c892beefeb7dd7641b397105b6ed3 (diff)
parent4e2f284b2b1c8d00015ad6c473921326444f7967 (diff)
downloadtcl-67e7ab87de19d14069d0e24aae20cea3afec4f2b.zip
tcl-67e7ab87de19d14069d0e24aae20cea3afec4f2b.tar.gz
tcl-67e7ab87de19d14069d0e24aae20cea3afec4f2b.tar.bz2
More isspace() callers.
Diffstat (limited to 'unix')
-rw-r--r--unix/tclUnixFile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixFile.c b/unix/tclUnixFile.c
index 2be68c4..c8afeb2 100644
--- a/unix/tclUnixFile.c
+++ b/unix/tclUnixFile.c
@@ -82,7 +82,7 @@ TclpFindExecutable(
*/
while (1) {
- while (isspace(UCHAR(*p))) { /* INTL: BUG */
+ while (TclIsSpaceProc(*p)) {
p++;
}
name = p;