diff options
author | dgp@users.sourceforge.net <dgp> | 2011-04-28 16:00:16 (GMT) |
---|---|---|
committer | dgp@users.sourceforge.net <dgp> | 2011-04-28 16:00:16 (GMT) |
commit | 4e2f284b2b1c8d00015ad6c473921326444f7967 (patch) | |
tree | 594d7927db197d025019ed1ed78bb8de85e4d4ed /unix/tclUnixFile.c | |
parent | 827e4c28d6b5f2f65999cface44008ad54250228 (diff) | |
download | tcl-4e2f284b2b1c8d00015ad6c473921326444f7967.zip tcl-4e2f284b2b1c8d00015ad6c473921326444f7967.tar.gz tcl-4e2f284b2b1c8d00015ad6c473921326444f7967.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; |