diff options
| author | dgp <dgp@users.sourceforge.net> | 2011-05-10 16:05:48 (GMT) |
|---|---|---|
| committer | dgp <dgp@users.sourceforge.net> | 2011-05-10 16:05:48 (GMT) |
| commit | 8b55adfd6cb802445c043214a0dcec65d8ecfcf1 (patch) | |
| tree | 1ca2feda250662282a8e77080fef123d9256b839 /unix/tclUnixFile.c | |
| parent | 29128e81d21dcc942fc8410424255017004b36ac (diff) | |
| download | tcl-8b55adfd6cb802445c043214a0dcec65d8ecfcf1.zip tcl-8b55adfd6cb802445c043214a0dcec65d8ecfcf1.tar.gz tcl-8b55adfd6cb802445c043214a0dcec65d8ecfcf1.tar.bz2 | |
Completed patch with mucho comments. Merge 8.5.
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; |
