diff options
author | dgp <dgp@users.sourceforge.net> | 2011-03-06 22:19:29 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2011-03-06 22:19:29 (GMT) |
commit | 590b69308f62e20ef06bc1dddb80c910187ec9a0 (patch) | |
tree | 143a00b3e9c1727409f8c0498c59131b75126e4f /generic/tclBasic.c | |
parent | 85e04692fde0b069530d71cd79b6f9fedb42571b (diff) | |
parent | a083ddc8208f8e9f625ef92db90f941262a260a6 (diff) | |
download | tcl-590b69308f62e20ef06bc1dddb80c910187ec9a0.zip tcl-590b69308f62e20ef06bc1dddb80c910187ec9a0.tar.gz tcl-590b69308f62e20ef06bc1dddb80c910187ec9a0.tar.bz2 |
* generic/tclBasic.c: More replacements of Tcl_UtfBackslash() calls
* generic/tclCompile.c: with TclParseBackslash() where possible.
* generic/tclParse.c:
* generic/tclUtil.c:
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 33fed8d..36ece2c 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -4066,7 +4066,7 @@ TclEvalEx( int line, /* The line the script starts on. */ int* clNextOuter, /* Information about an outer context for */ CONST char* outerScript) /* continuation line data. This is set only in - * EvalTokensStandard(), to properly handle + * TclSubstTokens(), to properly handle * [...]-nested commands. The 'outerScript' * refers to the most-outer script containing the * embedded command, which is refered to by @@ -4573,7 +4573,7 @@ TclAdvanceContinuations (line,clNextPtrPtr,loc) /* * Track the invisible continuation lines embedded in a script, if * any. Here they are just spaces (already). They were removed by - * EvalTokensStandard() via Tcl_UtfBackslash(). + * TclSubstTokens() via TclParseBackslash(). * * *clNextPtrPtr <=> We have continuation lines to track. * **clNextPtrPtr >= 0 <=> We are not beyond the last possible location. |