summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixFile.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2011-04-28 16:00:16 (GMT)
committerdgp <dgp@users.sourceforge.net>2011-04-28 16:00:16 (GMT)
commit98b8497049cfeef401ed6514580249aac3383d4e (patch)
tree594d7927db197d025019ed1ed78bb8de85e4d4ed /unix/tclUnixFile.c
parent5702e695062ec36c3addd403d748af48164db8b1 (diff)
downloadtcl-98b8497049cfeef401ed6514580249aac3383d4e.zip
tcl-98b8497049cfeef401ed6514580249aac3383d4e.tar.gz
tcl-98b8497049cfeef401ed6514580249aac3383d4e.tar.bz2
More isspace() callers.
Diffstat (limited to 'unix/tclUnixFile.c')
-rw-r--r--unix/tclUnixFile.c2
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;