core: Use substr in extfmt instead of slice_bytes

This commit is contained in:
Brian Anderson
2012-02-07 16:34:02 -08:00
parent 1aa23947a6
commit 0c13ee22ad
+1 -2
View File
@@ -321,13 +321,12 @@ fn conv_str(cv: conv, s: str) -> str unsafe {
// For strings, precision is the maximum characters
// displayed
// FIXME: substr works on bytes, not chars!
let unpadded =
alt cv.precision {
count_implied { s }
count_is(max) {
if max as uint < str::char_len(s) {
str::unsafe::slice_bytes(s, 0u, max as uint)
str::substr(s, 0u, max as uint)
} else { s }
}
};