diff options
author | dgp <dgp@users.sourceforge.net> | 2011-04-28 16:00:16 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2011-04-28 16:00:16 (GMT) |
commit | 92906a53a74eaca4671e76dcf8789db8c565c082 (patch) | |
tree | 594d7927db197d025019ed1ed78bb8de85e4d4ed /unix/tclUnixFile.c | |
parent | 311dd13184c02f63bc2e2a474f28bfbb7d31ef0a (diff) | |
download | tcl-92906a53a74eaca4671e76dcf8789db8c565c082.zip tcl-92906a53a74eaca4671e76dcf8789db8c565c082.tar.gz tcl-92906a53a74eaca4671e76dcf8789db8c565c082.tar.bz2 |
More isspace() callers.
Diffstat (limited to 'unix/tclUnixFile.c')
-rw-r--r-- | unix/tclUnixFile.c | 2 |
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; |