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 | 0f60d55a98aa637a0b6ce1a6fabe8fdcd4df6eb4 (patch) | |
tree | 3d0a3378ba018b21c5ba3eca74a04c79da39a7a9 /unix/tclUnixFile.c | |
parent | 7fa90bb19565f59f0c918cac88e2a34bf51cd0fa (diff) | |
parent | 98b8497049cfeef401ed6514580249aac3383d4e (diff) | |
download | tcl-0f60d55a98aa637a0b6ce1a6fabe8fdcd4df6eb4.zip tcl-0f60d55a98aa637a0b6ce1a6fabe8fdcd4df6eb4.tar.gz tcl-0f60d55a98aa637a0b6ce1a6fabe8fdcd4df6eb4.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; |