Skip to content

Commit 8065486

Browse files
Sawyer47alexcrichton
authored andcommitted
Change how the 0 flag works in format! for floats
Now it always implies right-alignment, so that padding zeroes are placed after the sign (if any) and before the digits. In other words, it always takes precedence over explicitly specified `[[fill]align]`. :06 :<06 :>06 :^06 before |-001.2| |-1.200| |-001.2| |-01.20| after |-001.2| |-001.2| |-001.2| |-001.2|
1 parent ff63866 commit 8065486

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

src/libcore/fmt/mod.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -1154,8 +1154,9 @@ impl<'a> Formatter<'a> {
11541154
// for the sign-aware zero padding, we render the sign first and
11551155
// behave as if we had no sign from the beginning.
11561156
let mut formatted = formatted.clone();
1157-
let mut align = self.align;
11581157
let old_fill = self.fill;
1158+
let old_align = self.align;
1159+
let mut align = old_align;
11591160
if self.sign_aware_zero_pad() {
11601161
// a sign always goes first
11611162
let sign = unsafe { str::from_utf8_unchecked(formatted.sign) };
@@ -1166,6 +1167,7 @@ impl<'a> Formatter<'a> {
11661167
width = if width < sign.len() { 0 } else { width - sign.len() };
11671168
align = rt::v1::Alignment::Right;
11681169
self.fill = '0';
1170+
self.align = rt::v1::Alignment::Right;
11691171
}
11701172

11711173
// remaining parts go through the ordinary padding process.
@@ -1178,6 +1180,7 @@ impl<'a> Formatter<'a> {
11781180
})
11791181
};
11801182
self.fill = old_fill;
1183+
self.align = old_align;
11811184
ret
11821185
} else {
11831186
// this is the common case and we take a shortcut

src/test/run-pass/ifmt.rs

+12
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,18 @@ pub fn main() {
176176
t!(format!("{:<#05x}", 1), "0x001");
177177
t!(format!("{:>#05x}", 1), "0x001");
178178
t!(format!("{:^#05x}", 1), "0x001");
179+
t!(format!("{:05}", 1.2), "001.2");
180+
t!(format!("{:<05}", 1.2), "001.2");
181+
t!(format!("{:>05}", 1.2), "001.2");
182+
t!(format!("{:^05}", 1.2), "001.2");
183+
t!(format!("{:05}", -1.2), "-01.2");
184+
t!(format!("{:<05}", -1.2), "-01.2");
185+
t!(format!("{:>05}", -1.2), "-01.2");
186+
t!(format!("{:^05}", -1.2), "-01.2");
187+
t!(format!("{:+05}", 1.2), "+01.2");
188+
t!(format!("{:<+05}", 1.2), "+01.2");
189+
t!(format!("{:>+05}", 1.2), "+01.2");
190+
t!(format!("{:^+05}", 1.2), "+01.2");
179191

180192
// Ergonomic format_args!
181193
t!(format!("{0:x} {0:X}", 15), "f F");

0 commit comments

Comments
 (0)