diff options
author | dgp <dgp@users.sourceforge.net> | 2011-04-28 14:44:47 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2011-04-28 14:44:47 (GMT) |
commit | 7fa90bb19565f59f0c918cac88e2a34bf51cd0fa (patch) | |
tree | c826199d351b0c6f0746a66124227d102686a420 /generic/tclCmdMZ.c | |
parent | 319c5292645aa41b4f56539f615ba5314b27c957 (diff) | |
parent | 5702e695062ec36c3addd403d748af48164db8b1 (diff) | |
download | tcl-7fa90bb19565f59f0c918cac88e2a34bf51cd0fa.zip tcl-7fa90bb19565f59f0c918cac88e2a34bf51cd0fa.tar.gz tcl-7fa90bb19565f59f0c918cac88e2a34bf51cd0fa.tar.bz2 |
New utility routines: TclIsSpaceProc() and TclCountSpaceRuns()
Use to replace calls to isspace() and their /* INTL */ risk.
Diffstat (limited to 'generic/tclCmdMZ.c')
-rw-r--r-- | generic/tclCmdMZ.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclCmdMZ.c b/generic/tclCmdMZ.c index e4a58ed..c34ce6c 100644 --- a/generic/tclCmdMZ.c +++ b/generic/tclCmdMZ.c @@ -1665,7 +1665,7 @@ StringIsCmd( * if it is the first "element" that has the failure. */ - while (isspace(UCHAR(*p))) { /* INTL: ? */ + while (TclIsSpaceProc(*p)) { p++; } TclNewStringObj(tmpStr, string1, p-string1); |