summaryrefslogtreecommitdiffstats
path: root/generic/tclUtil.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclUtil.c')
-rw-r--r--generic/tclUtil.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclUtil.c b/generic/tclUtil.c
index 0c9a3b2..3043fed 100644
--- a/generic/tclUtil.c
+++ b/generic/tclUtil.c
@@ -2598,10 +2598,11 @@ char *
Tcl_DStringAppend(
Tcl_DString *dsPtr, /* Structure describing dynamic string. */
const char *bytes, /* String to append. If length is
- * TCL_INDEX_NONE then this must be null-terminated. */
+ * TCL_INDEX_NONE then this must be
+ * null-terminated. */
Tcl_Size length) /* Number of bytes from "bytes" to append. If
- * TCL_INDEX_NONE, then append all of bytes, up to null
- * at end. */
+ * TCL_INDEX_NONE, then append all of bytes, up
+ * to null at end. */
{
Tcl_Size newSize;
@@ -2617,7 +2618,6 @@ Tcl_DStringAppend(
}
newSize = length + dsPtr->length + 1;
-
if (newSize > dsPtr->spaceAvl) {
if (dsPtr->string == dsPtr->staticSpace) {
char *newString;