diff options
| author | rmax <rmax> | 2008-04-07 15:23:04 (GMT) |
|---|---|---|
| committer | rmax <rmax> | 2008-04-07 15:23:04 (GMT) |
| commit | 61b12f3a569b45c006791aa05e98150bf9764019 (patch) | |
| tree | 977c901d0fab00597fe986e630e23630f418d622 /generic/tclStringObj.c | |
| parent | c9585ee6ae26bd31c2fba641f41784c989701ee0 (diff) | |
| download | tcl-61b12f3a569b45c006791aa05e98150bf9764019.zip tcl-61b12f3a569b45c006791aa05e98150bf9764019.tar.gz tcl-61b12f3a569b45c006791aa05e98150bf9764019.tar.bz2 | |
* generic/tclStringObj.c (Tcl_AppendFormatToObj):
Fix [format {% d}] so that it behaves the same way as in 8.4 and
as C's printf().
* tests/format.test: Add a test for '% d' and '%+d'.
Diffstat (limited to 'generic/tclStringObj.c')
| -rw-r--r-- | generic/tclStringObj.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclStringObj.c b/generic/tclStringObj.c index 9664726..16a5bae 100644 --- a/generic/tclStringObj.c +++ b/generic/tclStringObj.c @@ -33,7 +33,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStringObj.c,v 1.70 2008/02/28 17:36:49 dgp Exp $ */ + * RCS: @(#) $Id: tclStringObj.c,v 1.71 2008/04/07 15:23:10 rmax Exp $ */ #include "tclInt.h" #include "tommath.h" @@ -2003,8 +2003,8 @@ Tcl_AppendFormatToObj( allocSegment = 1; Tcl_IncrRefCount(segment); - if ((isNegative || gotPlus) && (useBig || (ch == 'd'))) { - Tcl_AppendToObj(segment, (isNegative ? "-" : "+"), 1); + if ((isNegative || gotPlus || gotSpace) && (useBig || (ch == 'd'))) { + Tcl_AppendToObj(segment, (isNegative ? "-" : gotPlus ? "+" : " "), 1); } if (gotHash) { |
