summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixFile.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2011-04-28 16:00:16 (GMT)
committerdgp <dgp@users.sourceforge.net>2011-04-28 16:00:16 (GMT)
commit92906a53a74eaca4671e76dcf8789db8c565c082 (patch)
tree594d7927db197d025019ed1ed78bb8de85e4d4ed /unix/tclUnixFile.c
parent311dd13184c02f63bc2e2a474f28bfbb7d31ef0a (diff)
downloadtcl-92906a53a74eaca4671e76dcf8789db8c565c082.zip
tcl-92906a53a74eaca4671e76dcf8789db8c565c082.tar.gz
tcl-92906a53a74eaca4671e76dcf8789db8c565c082.tar.bz2
More isspace() callers.
Diffstat (limited to 'unix/tclUnixFile.c')
-rw-r--r--unix/tclUnixFile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixFile.c b/unix/tclUnixFile.c
index 625b864..2639d59 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;