diff options
| author | dgp <dgp@users.sourceforge.net> | 2011-04-28 16:02:09 (GMT) |
|---|---|---|
| committer | dgp <dgp@users.sourceforge.net> | 2011-04-28 16:02:09 (GMT) |
| commit | 478c4f27117f1923b27c8554447db7902a573c6f (patch) | |
| tree | 3d0a3378ba018b21c5ba3eca74a04c79da39a7a9 /unix/tclUnixFile.c | |
| parent | 2df55486c49d238b2f888339b84efa9766b4d94a (diff) | |
| parent | 92906a53a74eaca4671e76dcf8789db8c565c082 (diff) | |
| download | tcl-478c4f27117f1923b27c8554447db7902a573c6f.zip tcl-478c4f27117f1923b27c8554447db7902a573c6f.tar.gz tcl-478c4f27117f1923b27c8554447db7902a573c6f.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 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; |
