summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-05-29 13:10:30 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-05-29 13:10:30 (GMT)
commite5726b43396ad7e3356c453ed8ae75c7349e6707 (patch)
treef458d29c81bcbe51c8c286fd96e205a7e2ec5a21 /win
parentc571887777c0fea5679125daa68dc66e94e3f834 (diff)
downloadtcl-e5726b43396ad7e3356c453ed8ae75c7349e6707.zip
tcl-e5726b43396ad7e3356c453ed8ae75c7349e6707.tar.gz
tcl-e5726b43396ad7e3356c453ed8ae75c7349e6707.tar.bz2
Tcl_UtfToUniChar() -> TclUtfToUniChar() in various places: No change in functionality, just faster if ASCII only strings are involved.
Diffstat (limited to 'win')
-rw-r--r--win/tclWinPipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinPipe.c b/win/tclWinPipe.c
index 5246d53..fe0ed2d 100644
--- a/win/tclWinPipe.c
+++ b/win/tclWinPipe.c
@@ -1482,7 +1482,7 @@ BuildCommandLine(
Tcl_UniChar ch;
for (start = arg; *start != '\0'; start += count) {
- count = Tcl_UtfToUniChar(start, &ch);
+ count = TclUtfToUniChar(start, &ch);
if (Tcl_UniCharIsSpace(ch)) { /* INTL: ISO space. */
quote = 1;
break;