summaryrefslogtreecommitdiff
path: root/sprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sprintf.c')
-rw-r--r--sprintf.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/sprintf.c b/sprintf.c
index 99c97a01c0..84d5fd112b 100644
--- a/sprintf.c
+++ b/sprintf.c
@@ -1107,16 +1107,19 @@ rb_str_format(int argc, const VALUE *argv, VALUE fmt)
done += prec;
}
if ((flags & FWIDTH) && width > done) {
+ int fill = ' ';
+ long shifting = 0;
if (!(flags&FMINUS)) {
- long i, shifting = (flags&FZERO) ? done - prefix : done;
- for (i = 1; i <= shifting; i++)
- buf[width - i] = buf[done - i];
+ shifting = done;
+ if (flags&FZERO) {
+ shifting -= prefix;
+ fill = '0';
+ }
blen -= shifting;
- FILL((flags&FZERO) ? '0' : ' ', width - done);
- blen += shifting;
- } else {
- FILL(' ', width - done);
+ memmove(&buf[blen + width - done], &buf[blen], shifting);
}
+ FILL(fill, width - done);
+ blen += shifting;
}
RB_GC_GUARD(val);
break;