summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2011-03-06 22:33:01 (GMT)
committerdgp <dgp@noemail.net>2011-03-06 22:33:01 (GMT)
commit5aa2c4d7fc432398b662519f080b8f7c918c5581 (patch)
treedba041e4a0b7494a00e6c28357073b27feb6d9c9 /generic/tclBasic.c
parentb08aed08dd92dfd47b5e6cd1fdd0e1825a8a1388 (diff)
parent839ddd5a0e82b93e05a9fdcf7068ef7769540df9 (diff)
downloadtcl-5aa2c4d7fc432398b662519f080b8f7c918c5581.zip
tcl-5aa2c4d7fc432398b662519f080b8f7c918c5581.tar.gz
tcl-5aa2c4d7fc432398b662519f080b8f7c918c5581.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: FossilOrigin-Name: 6b0527ff33cf34229d6dddc3d6b8998897633da3
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index b07a55d..5100dd9 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -4907,7 +4907,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
@@ -5413,7 +5413,7 @@ TclAdvanceContinuations(
/*
* 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.