This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Perl_sv_vcatpvfn_flags: use quick concat for %.0f
authorDavid Mitchell <davem@iabyn.com>
Fri, 19 May 2017 14:45:51 +0000 (15:45 +0100)
committerDavid Mitchell <davem@iabyn.com>
Wed, 7 Jun 2017 08:11:03 +0000 (09:11 +0100)
commitb2ad037fc156084b17ba3c2f93be3fe214322208
tree35d0f4ba7f14e224b1b4b5cbe02abdb1e4b07c96
parentf851755c7adcf343960bf89d33c4cd426aef3ecb
Perl_sv_vcatpvfn_flags: use quick concat for %.0f

Most floating-point formats now use the quick concat path. But the
"%.0f" shortcut was accidentally bypassing that path. This commit fixes
that.
sv.c