Index: java/text/DecimalFormat.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/text/DecimalFormat.java,v retrieving revision 1.18 diff -u -3 -p -u -r1.18 DecimalFormat.java --- java/text/DecimalFormat.java 15 Nov 2004 14:13:26 -0000 1.18 +++ java/text/DecimalFormat.java 29 Dec 2004 01:48:05 -0000 @@ -685,6 +685,9 @@ public class DecimalFormat extends Numbe int integerBeginIndex = dest.length(); int index = dest.length(); int count = 0; + + /* Handle percentages, etc. */ + number *= multiplier; while (count < maximumIntegerDigits && (number > 0 || count < minimumIntegerDigits)) {