diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-10-04 10:20:05 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-10-04 10:20:05 (GMT) |
commit | 8cfade5b0fa56912715446ea7a2dd1958cc214f0 (patch) | |
tree | c194fcc2d81698041630a4a048fbf54830f1fd6d /generic/tclStringObj.c | |
parent | 75225f0f64618f3ad8ae3424eb84a7ed59ffd1f3 (diff) | |
parent | 5cfe99ddfef51d700eee80c9f766fab9c458038e (diff) | |
download | tcl-8cfade5b0fa56912715446ea7a2dd1958cc214f0.zip tcl-8cfade5b0fa56912715446ea7a2dd1958cc214f0.tar.gz tcl-8cfade5b0fa56912715446ea7a2dd1958cc214f0.tar.bz2 |
Eliminate unnessessary end-of-line spacing. No functional change.
Diffstat (limited to 'generic/tclStringObj.c')
-rw-r--r-- | generic/tclStringObj.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/generic/tclStringObj.c b/generic/tclStringObj.c index c04944d..8d70d20 100644 --- a/generic/tclStringObj.c +++ b/generic/tclStringObj.c @@ -188,7 +188,7 @@ GrowStringBuffer( int flag) { /* - * Pre-conditions: + * Pre-conditions: * objPtr->typePtr == &tclStringType * needed > stringPtr->allocated * flag || objPtr->bytes != NULL @@ -238,7 +238,7 @@ GrowUnicodeBuffer( int needed) { /* - * Pre-conditions: + * Pre-conditions: * objPtr->typePtr == &tclStringType * needed > stringPtr->maxChars * needed < STRING_MAXCHARS @@ -1334,7 +1334,7 @@ Tcl_AppendObjToObj( * appendObjPtr and append it. */ - if (stringPtr->hasUnicode + if (stringPtr->hasUnicode #if COMPAT && stringPtr->numChars > 0 #endif @@ -2314,7 +2314,7 @@ Tcl_AppendFormatToObj( p += sprintf(p, "%d", width); if (width > length) { length = width; - } + } } if (gotPrecision) { *p++ = '.'; @@ -2878,7 +2878,7 @@ ExtendUnicodeRepWithString( } needed = numOrigChars + numAppendChars; stringCheckLimits(needed); - + if (needed > stringPtr->maxChars) { GrowUnicodeBuffer(objPtr, needed); stringPtr = GET_STRING(objPtr); @@ -3096,7 +3096,7 @@ ExtendStringRepWithUnicode( * Pre-condition: this is the "string" Tcl_ObjType. */ - int i, origLength, size = 0; + int i, origLength, size = 0; char *dst, buf[TCL_UTF_MAX]; String *stringPtr = GET_STRING(objPtr); @@ -3112,12 +3112,12 @@ ExtendStringRepWithUnicode( objPtr->length = 0; } size = origLength = objPtr->length; - + /* * Quick cheap check in case we have more than enough room. */ - if (numChars <= (INT_MAX - size)/TCL_UTF_MAX + if (numChars <= (INT_MAX - size)/TCL_UTF_MAX && stringPtr->allocated >= size + numChars * TCL_UTF_MAX) { goto copyBytes; } |