summaryrefslogtreecommitdiffstats
path: root/generic/tclUtil.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2011-03-06 22:33:01 (GMT)
committerdgp <dgp@users.sourceforge.net>2011-03-06 22:33:01 (GMT)
commit2974197dc80bf11f3de2283e0a2275242eeba099 (patch)
treedba041e4a0b7494a00e6c28357073b27feb6d9c9 /generic/tclUtil.c
parent42a0f5eabc531da30fc887e4c56cca4fdfd41d35 (diff)
parent590b69308f62e20ef06bc1dddb80c910187ec9a0 (diff)
downloadtcl-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/tclUtil.c')
-rw-r--r--generic/tclUtil.c31
1 files changed, 16 insertions, 15 deletions
diff --git a/generic/tclUtil.c b/generic/tclUtil.c
index 3fd6271..7161fdd 100644
--- a/generic/tclUtil.c
+++ b/generic/tclUtil.c
@@ -326,14 +326,13 @@ TclFindElement(
*
* TclCopyAndCollapse --
*
- * Copy a string and eliminate any backslashes that aren't in braces.
+ * Copy a string and substitute all backslash escape sequences
*
* Results:
- * Count characters get copied from src to dst. Along the way, if
- * backslash sequences are found outside braces, the backslashes are
- * eliminated in the copy. After scanning count chars from source, a null
- * character is placed at the end of dst. Returns the number of
- * characters that got copied.
+ * Count bytes get copied from src to dst. Along the way, backslash
+ * sequences are substituted in the copy. After scanning count bytes
+ * from src, a null character is placed at the end of dst. Returns
+ * the number of bytes that got written to dst.
*
* Side effects:
* None.
@@ -343,26 +342,28 @@ TclFindElement(
int
TclCopyAndCollapse(
- int count, /* Number of characters to copy from src. */
+ int count, /* Number of byte to copy from src. */
const char *src, /* Copy from here... */
char *dst) /* ... to here. */
{
- register char c;
- int numRead;
int newCount = 0;
- int backslashCount;
- for (c = *src; count > 0; src++, c = *src, count--) {
+ while (count > 0) {
+ char c = *src;
if (c == '\\') {
- backslashCount = Tcl_UtfBackslash(src, &numRead, dst);
+ int numRead;
+ int backslashCount = TclParseBackslash(src, count, &numRead, dst);
+
dst += backslashCount;
newCount += backslashCount;
- src += numRead-1;
- count -= numRead-1;
+ src += numRead;
+ count -= numRead;
} else {
*dst = c;
dst++;
newCount++;
+ src++;
+ count--;
}
}
*dst = 0;
@@ -742,7 +743,7 @@ Tcl_ScanCountedElement(
} else {
int size;
- Tcl_UtfBackslash(p, &size, NULL);
+ TclParseBackslash(p, lastChar - p, &size, NULL);
p += size-1;
flags |= USE_BRACES;
}