diff options
author | dgp <dgp@users.sourceforge.net> | 2011-03-06 22:33:01 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2011-03-06 22:33:01 (GMT) |
commit | 2974197dc80bf11f3de2283e0a2275242eeba099 (patch) | |
tree | dba041e4a0b7494a00e6c28357073b27feb6d9c9 /generic/tclParse.c | |
parent | 42a0f5eabc531da30fc887e4c56cca4fdfd41d35 (diff) | |
parent | 590b69308f62e20ef06bc1dddb80c910187ec9a0 (diff) | |
download | tcl-2974197dc80bf11f3de2283e0a2275242eeba099.zip tcl-2974197dc80bf11f3de2283e0a2275242eeba099.tar.gz tcl-2974197dc80bf11f3de2283e0a2275242eeba099.tar.bz2 |
* generic/tclBasic.c: More replacements of Tcl_UtfBackslash() calls
* generic/tclCompile.c: with TclParseBackslash() where possible.
* generic/tclCompCmdsSZ.c:
* generic/tclParse.c:
* generic/tclUtil.c:
Diffstat (limited to 'generic/tclParse.c')
-rw-r--r-- | generic/tclParse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclParse.c b/generic/tclParse.c index 149644d..705a141 100644 --- a/generic/tclParse.c +++ b/generic/tclParse.c @@ -2172,8 +2172,8 @@ TclSubstTokens( break; case TCL_TOKEN_BS: - appendByteLength = Tcl_UtfBackslash(tokenPtr->start, NULL, - utfCharBytes); + appendByteLength = TclParseBackslash(tokenPtr->start, + tokenPtr->size, NULL, utfCharBytes); append = utfCharBytes; /* |